aboutsummaryrefslogtreecommitdiff
path: root/gdb/thread.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2008-03-12 22:10:55 +0000
committerPedro Alves <palves@redhat.com>2008-03-12 22:10:55 +0000
commitfd532e2e9e70eab584bdd2db7925c427b97b8b0e (patch)
tree87e46f58ff28045c7c5b10a255f4f5c47fbcaa49 /gdb/thread.c
parent965b60eecbf5def589aea7c6359dcf48fdadce26 (diff)
downloadgdb-fd532e2e9e70eab584bdd2db7925c427b97b8b0e.zip
gdb-fd532e2e9e70eab584bdd2db7925c427b97b8b0e.tar.gz
gdb-fd532e2e9e70eab584bdd2db7925c427b97b8b0e.tar.bz2
* thread.c (add_thread): Use printf_unfiltered to print.
Diffstat (limited to 'gdb/thread.c')
-rw-r--r--gdb/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/thread.c b/gdb/thread.c
index 2fdfa77..40b7b3d 100644
--- a/gdb/thread.c
+++ b/gdb/thread.c
@@ -136,7 +136,7 @@ add_thread (ptid_t ptid)
struct thread_info *result = add_thread_silent (ptid);
if (print_thread_events)
- printf_filtered (_("[New %s]\n"), target_pid_to_str (ptid));
+ printf_unfiltered (_("[New %s]\n"), target_pid_to_str (ptid));
return result;
}