aboutsummaryrefslogtreecommitdiff
path: root/gdb/f-lang.c
diff options
context:
space:
mode:
authorPierre Muller <muller@sourceware.org>2002-04-25 16:33:11 +0000
committerPierre Muller <muller@sourceware.org>2002-04-25 16:33:11 +0000
commitdac8068ed4cf7ef7f004f5cfd6d8032413c51736 (patch)
tree4614c35283d221a79adbc2dead0d34aad9c39399 /gdb/f-lang.c
parent25bf3106359b27b442533f51e3ab3c2f9e62f1a1 (diff)
downloadgdb-dac8068ed4cf7ef7f004f5cfd6d8032413c51736.zip
gdb-dac8068ed4cf7ef7f004f5cfd6d8032413c51736.tar.gz
gdb-dac8068ed4cf7ef7f004f5cfd6d8032413c51736.tar.bz2
2002-04-24 Pierre Muller <ics.u-strasbg.fr>
* f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,... with fprintf_unfiltered (gdb_stderr,....
Diffstat (limited to 'gdb/f-lang.c')
-rw-r--r--gdb/f-lang.c6
1 files changed, 3 insertions, 3 deletions
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);
}