aboutsummaryrefslogtreecommitdiff
path: root/gdb/hpread.c
diff options
context:
space:
mode:
authorPierre Muller <muller@sourceware.org>2002-04-29 11:08:26 +0000
committerPierre Muller <muller@sourceware.org>2002-04-29 11:08:26 +0000
commit2b9848d845656f4864fe9df4b148a9ff8566f153 (patch)
tree36edc1754ca0ace1a97043256c7909c584f9b580 /gdb/hpread.c
parentf8d17dc5b4dcb077ae1702e78b4fae0eb2b8cffb (diff)
downloadgdb-2b9848d845656f4864fe9df4b148a9ff8566f153.zip
gdb-2b9848d845656f4864fe9df4b148a9ff8566f153.tar.gz
gdb-2b9848d845656f4864fe9df4b148a9ff8566f153.tar.bz2
2002-04-24 Pierre Muller <ics.u-strasbg.fr>
* hpread.c (hpread_psymtab_to_symtab_1, hpread_psymtab_to_symtab): Replace fprintf (stderr,...) with fprintf_unfiltered (gdb_stderr,...).
Diffstat (limited to 'gdb/hpread.c')
-rw-r--r--gdb/hpread.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/gdb/hpread.c b/gdb/hpread.c
index 15ff2ef..ce6ffe2 100644
--- a/gdb/hpread.c
+++ b/gdb/hpread.c
@@ -2693,8 +2693,9 @@ hpread_psymtab_to_symtab_1 (struct partial_symtab *pst)
/* Complain if we've already read in this symbol table. */
if (pst->readin)
{
- fprintf (stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
- pst->filename);
+ fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in."
+ " Shouldn't happen.\n",
+ pst->filename);
return;
}
@@ -2748,8 +2749,9 @@ hpread_psymtab_to_symtab (struct partial_symtab *pst)
/* Sanity check. */
if (pst->readin)
{
- fprintf (stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
- pst->filename);
+ fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in."
+ " Shouldn't happen.\n",
+ pst->filename);
return;
}