2002-04-24 Pierre Muller <ics.u-strasbg.fr>
authorPierre Muller <muller@sourceware.org>
Mon, 29 Apr 2002 11:08:26 +0000 (11:08 +0000)
committerPierre Muller <muller@sourceware.org>
Mon, 29 Apr 2002 11:08:26 +0000 (11:08 +0000)
* hpread.c (hpread_psymtab_to_symtab_1,
hpread_psymtab_to_symtab): Replace fprintf (stderr,...)
with fprintf_unfiltered (gdb_stderr,...).

gdb/ChangeLog
gdb/hpread.c

index faa200f69bffd710caad3f663c9d4a5b6cccb017..6499ae9444bed4f710773aeca28c9f8cfe345a58 100644 (file)
@@ -1,3 +1,9 @@
+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,...).
+
 2002-04-24  Pierre Muller  <ics.u-strasbg.fr>
 
        * remote-array.c (printf_monitor, write_monitor,
index 15ff2ef8004f8f9bb6ee0f62f22d1550531eb5e1..ce6ffe259ed749cea72f2f14ab5672be8703f663 100644 (file)
@@ -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;
     }