mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-05 15:15:42 +00:00
remote: Fix indentation in remote_new_objfile.
gdb/remote.c:14541:5: warning: misleading indentation; statement is not part of the previous 'if' [-Wmisleading-indentation]
if (current_inferior ()->in_initial_library_scan)
^
gdb/remote.c:14527:3: note: previous statement is here
if (remote == nullptr)
^
gdb/ChangeLog:
* remote.c (remote_new_objfile): Fix indentation.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2021-06-12 John Baldwin <jhb@FreeBSD.org>
|
||||
|
||||
* remote.c (remote_new_objfile): Fix indentation.
|
||||
|
||||
2021-06-11 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* solib.c (libpthread_name_p): Match "libc" in addition
|
||||
|
||||
@@ -14538,8 +14538,8 @@ remote_new_objfile (struct objfile *objfile)
|
||||
|
||||
So, skip these events, we'll give the remote a chance to look up symbols
|
||||
once all the loaded libraries and their symbols are known to GDB. */
|
||||
if (current_inferior ()->in_initial_library_scan)
|
||||
return;
|
||||
if (current_inferior ()->in_initial_library_scan)
|
||||
return;
|
||||
|
||||
remote->remote_check_symbols ();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user