diff options
Diffstat (limited to 'gdb/hpread.c')
-rw-r--r-- | gdb/hpread.c | 10 |
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; } |