summaryrefslogtreecommitdiff
path: root/gdb/hpread.c
diff options
context:
space:
mode:
authorPierre Muller <muller@ics.u-strasbg.fr>2002-04-29 11:08:26 +0000
committerPierre Muller <muller@ics.u-strasbg.fr>2002-04-29 11:08:26 +0000
commit222f22005481d084def8a13db673e01406c9cd50 (patch)
tree791a1a41266a2683da9372ccb120a6d39aa05dc4 /gdb/hpread.c
parent0463c209547d410ad1524e9b3eb01f57200f26ff (diff)
downloadgdb-222f22005481d084def8a13db673e01406c9cd50.tar.gz
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 15ff2ef8004..ce6ffe259ed 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;
}