* thread.c (add_thread): Use printf_unfiltered to print.

This commit is contained in:
Pedro Alves 2008-03-12 22:10:55 +00:00
parent 965b60eecb
commit fd532e2e9e
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-03-12 Pedro Alves <pedro@codesourcery.com>
* thread.c (add_thread): Use printf_unfiltered to print.
2008-02-12 Joel Brobecker <brobecker@gnat.com>
* sol-thread.c: Replace use of TM_I386SOL2_H by an expression

View File

@ -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;
}