diff options
author | Doug Evans <dje@google.com> | 2009-04-07 20:43:49 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2009-04-07 20:43:49 +0000 |
commit | 21fde43c54c9ed7790684b3ad25a547d00f8f0a1 (patch) | |
tree | d5e0c8e2b672bce7280020a222232bff7e8d9e55 /gdb/symfile.c | |
parent | 09326346a4afccb09444836b5516a85c00e278e9 (diff) | |
download | gdb-21fde43c54c9ed7790684b3ad25a547d00f8f0a1.tar.gz |
* symfile.c (symbol_file_clear): Fix indentation.
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r-- | gdb/symfile.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c index f25c45ebc21..af1ab744b40 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -1155,17 +1155,17 @@ symbol_file_clear (int from_tty) symfile_objfile->name) : !query (_("Discard symbol table? ")))) error (_("Not confirmed.")); - free_all_objfiles (); - /* solib descriptors may have handles to objfiles. Since their - storage has just been released, we'd better wipe the solib - descriptors as well. - */ - no_shared_libraries (NULL, from_tty); + free_all_objfiles (); - symfile_objfile = NULL; - if (from_tty) - printf_unfiltered (_("No symbol file now.\n")); + /* solib descriptors may have handles to objfiles. Since their + storage has just been released, we'd better wipe the solib + descriptors as well. */ + no_shared_libraries (NULL, from_tty); + + symfile_objfile = NULL; + if (from_tty) + printf_unfiltered (_("No symbol file now.\n")); } struct build_id |