2008-03-12 Pedro Alves * thread.c (add_thread): Use printf_unfiltered to print. --- gdb/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: src/gdb/thread.c =================================================================== --- src.orig/gdb/thread.c 2008-03-12 01:36:24.000000000 +0000 +++ src/gdb/thread.c 2008-03-12 01:36:42.000000000 +0000 @@ -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; }