From 1206c6599d41da0ced4f0422f4b0081bf73bdf3b Mon Sep 17 00:00:00 2001 From: David Taylor Date: Thu, 14 Jan 1999 23:40:25 +0000 Subject: fix stream arguments to fprintf_unfiltered, gdb_flush, print_address_numeric, and fwrite. --- gdb/symmisc.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gdb/symmisc.c') diff --git a/gdb/symmisc.c b/gdb/symmisc.c index db13aa8..c876e4b 100644 --- a/gdb/symmisc.c +++ b/gdb/symmisc.c @@ -1017,9 +1017,9 @@ maintenance_check_symtabs (ignore, from_tty) printf_filtered ("Psymtab "); puts_filtered (ps->filename); printf_filtered (" covers bad range "); - print_address_numeric (ps->textlow, 1, stdout); + print_address_numeric (ps->textlow, 1, gdb_stdout); printf_filtered (" - "); - print_address_numeric (ps->texthigh, 1, stdout); + print_address_numeric (ps->texthigh, 1, gdb_stdout); printf_filtered ("\n"); continue; } @@ -1030,13 +1030,13 @@ maintenance_check_symtabs (ignore, from_tty) printf_filtered ("Psymtab "); puts_filtered (ps->filename); printf_filtered (" covers "); - print_address_numeric (ps->textlow, 1, stdout); + print_address_numeric (ps->textlow, 1, gdb_stdout); printf_filtered (" - "); - print_address_numeric (ps->texthigh, 1, stdout); + print_address_numeric (ps->texthigh, 1, gdb_stdout); printf_filtered (" but symtab covers only "); - print_address_numeric (BLOCK_START (b), 1, stdout); + print_address_numeric (BLOCK_START (b), 1, gdb_stdout); printf_filtered (" - "); - print_address_numeric (BLOCK_END (b), 1, stdout); + print_address_numeric (BLOCK_END (b), 1, gdb_stdout); printf_filtered ("\n"); } } -- cgit v1.1