OSDN Git Service

2002-04-24 Pierre Muller <ics.u-strasbg.fr>
authorPierre Muller <muller@ics.u-strasbg.fr>
Mon, 29 Apr 2002 11:08:26 +0000 (11:08 +0000)
committerPierre Muller <muller@ics.u-strasbg.fr>
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 faa200f..6499ae9 100644 (file)
@@ -1,5 +1,11 @@
 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,
        array_insert_breakpoint, array_remove_breakpoint ): 
        Replace fprintf (stderr,...
index 15ff2ef..ce6ffe2 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;
     }