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,...).
This commit is contained in:
Pierre Muller 2002-04-29 11:08:26 +00:00
parent f8d17dc5b4
commit 2b9848d845
2 changed files with 12 additions and 4 deletions

View 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,

View 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;
}