aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2008-09-22 18:18:07 +0000
committerTom Tromey <tromey@redhat.com>2008-09-22 18:18:07 +0000
commitd4c0a7a09f137c10ec79cf4dae1ae9faf943a84f (patch)
tree36ee4c5d5319d31f1813a237545dab7e3e62f323
parentbbb444b67aa83b3a4caac4642b3d9eb5a6cc2148 (diff)
downloadgdb-d4c0a7a09f137c10ec79cf4dae1ae9faf943a84f.zip
gdb-d4c0a7a09f137c10ec79cf4dae1ae9faf943a84f.tar.gz
gdb-d4c0a7a09f137c10ec79cf4dae1ae9faf943a84f.tar.bz2
* symfile.c (symbol_file_add_with_addrs_or_offsets): Don't use
printf_filtered.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/symfile.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index e0b3683..0a10e92 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2008-09-22 Tom Tromey <tromey@redhat.com>
+
+ * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't use
+ printf_filtered.
+
2008-09-22 Pedro Alves <pedro@codesourcery.com>
* infrun.c (follow_exec): Don't do a generic mourn. Instead
diff --git a/gdb/symfile.c b/gdb/symfile.c
index ae45f54..5964b84 100644
--- a/gdb/symfile.c
+++ b/gdb/symfile.c
@@ -1057,11 +1057,11 @@ symbol_file_add_with_addrs_or_offsets (bfd *abfd, int from_tty,
&& print_symbol_loading)
{
wrap_here ("");
- printf_filtered (_("(no debugging symbols found)"));
+ printf_unfiltered (_("(no debugging symbols found)"));
if (from_tty || info_verbose)
- printf_filtered ("...");
+ printf_unfiltered ("...");
else
- printf_filtered ("\n");
+ printf_unfiltered ("\n");
wrap_here ("");
}