aboutsummaryrefslogtreecommitdiff
path: root/gdb/symmisc.c
diff options
context:
space:
mode:
authorDavid Taylor <taylor@redhat.com>1999-01-14 23:40:25 +0000
committerDavid Taylor <taylor@redhat.com>1999-01-14 23:40:25 +0000
commit1206c6599d41da0ced4f0422f4b0081bf73bdf3b (patch)
tree091a9659ab047ab65426859d6ce0c191d95aa22a /gdb/symmisc.c
parentdab43dfdcd6648aa8791175b5566791949baafdc (diff)
downloadgdb-1206c6599d41da0ced4f0422f4b0081bf73bdf3b.zip
gdb-1206c6599d41da0ced4f0422f4b0081bf73bdf3b.tar.gz
gdb-1206c6599d41da0ced4f0422f4b0081bf73bdf3b.tar.bz2
fix stream arguments to fprintf_unfiltered, gdb_flush, print_address_numeric,
and fwrite.
Diffstat (limited to 'gdb/symmisc.c')
-rw-r--r--gdb/symmisc.c12
1 files changed, 6 insertions, 6 deletions
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");
}
}