From: Pierre Muller Date: Thu, 25 Apr 2002 16:33:11 +0000 (+0000) Subject: 2002-04-24 Pierre Muller X-Git-Tag: binutils-2_13-branchpoint~1221 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dac8068ed4cf7ef7f004f5cfd6d8032413c51736;p=external%2Fbinutils.git 2002-04-24 Pierre Muller * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,... with fprintf_unfiltered (gdb_stderr,.... --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a005eac..24964a9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2002-04-24 Pierre Muller + + * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,... + with fprintf_unfiltered (gdb_stderr,.... + 2002-04-25 Pierre Muller Fix PR gdb/508. diff --git a/gdb/f-lang.c b/gdb/f-lang.c index 1727bda..85866b3 100644 --- a/gdb/f-lang.c +++ b/gdb/f-lang.c @@ -904,7 +904,7 @@ get_bf_for_fcn (long the_function) if (current_head_bf_list->symnum_fcn == the_function) { if (global_remote_debug) - fprintf (stderr, "*"); + fprintf_unfiltered (gdb_stderr, "*"); tmp = current_head_bf_list; current_head_bf_list = current_head_bf_list->next; @@ -916,7 +916,7 @@ get_bf_for_fcn (long the_function) the ugly linear scan */ if (global_remote_debug) - fprintf (stderr, "\ndefaulting to linear scan\n"); + fprintf_unfiltered (gdb_stderr, "\ndefaulting to linear scan\n"); nprobes = 0; tmp = saved_bf_list; @@ -926,7 +926,7 @@ get_bf_for_fcn (long the_function) if (tmp->symnum_fcn == the_function) { if (global_remote_debug) - fprintf (stderr, "Found in %d probes\n", nprobes); + fprintf_unfiltered (gdb_stderr, "Found in %d probes\n", nprobes); current_head_bf_list = tmp->next; return (tmp->symnum_bf); }