aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote-mips.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-08-05 02:44:50 +0000
committerAndrew Cagney <cagney@redhat.com>2003-08-05 02:44:50 +0000
commitab4e3d93a0586b8b95213f7255b91fc056d82fd9 (patch)
tree62fe4da74d18451b09665b75ce282a2736b67d3b /gdb/remote-mips.c
parent1062ca825eafee452642a6d258c2b56ecac1aade (diff)
downloadgdb-ab4e3d93a0586b8b95213f7255b91fc056d82fd9.zip
gdb-ab4e3d93a0586b8b95213f7255b91fc056d82fd9.tar.gz
gdb-ab4e3d93a0586b8b95213f7255b91fc056d82fd9.tar.bz2
2003-08-04 Andrew Cagney <cagney@redhat.com>
* monitor.h (monitor_dump_reg_block): Remove ATTR_FORMAT. * cli/cli-script.c (define_command): Call query directly, instead of passing it a buffer. * ocd.c (ocd_error): Pass error a constant format string. * remote-mips.c (mips_error): Use fputs_filtered.
Diffstat (limited to 'gdb/remote-mips.c')
-rw-r--r--gdb/remote-mips.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote-mips.c b/gdb/remote-mips.c
index 96f3972..c50c504 100644
--- a/gdb/remote-mips.c
+++ b/gdb/remote-mips.c
@@ -483,7 +483,7 @@ mips_error (char *string,...)
wrap_here (""); /* Force out any buffered output */
gdb_flush (gdb_stdout);
if (error_pre_print)
- fprintf_filtered (gdb_stderr, error_pre_print);
+ fputs_filtered (error_pre_print, gdb_stderr);
vfprintf_filtered (gdb_stderr, string, args);
fprintf_filtered (gdb_stderr, "\n");
va_end (args);