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.
This commit is contained in:
Andrew Cagney 2003-08-05 02:44:50 +00:00
parent 1062ca825e
commit ab4e3d93a0
5 changed files with 18 additions and 7 deletions

View file

@ -1,5 +1,11 @@
2003-08-04 Andrew Cagney <cagney@redhat.com> 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.
* solib-svr4.c (_initialize_svr4_solib): Update * solib-svr4.c (_initialize_svr4_solib): Update
register_gdbarch_data call. register_gdbarch_data call.
* mips-linux-tdep.c (_initialize_mips_linux_tdep): Ditto. * mips-linux-tdep.c (_initialize_mips_linux_tdep): Ditto.

View file

@ -1092,11 +1092,12 @@ define_command (char *comname, int from_tty)
if (c) if (c)
{ {
int q;
if (c->class == class_user || c->class == class_alias) if (c->class == class_user || c->class == class_alias)
tem = "Redefine command \"%s\"? "; q = query ("Redefine command \"%s\"? ", c->name);
else else
tem = "Really redefine built-in command \"%s\"? "; q = query ("Really redefine built-in command \"%s\"? ", c->name);
if (!query (tem, c->name)) if (!q)
error ("Command \"%s\" not redefined.", c->name); error ("Command \"%s\" not redefined.", c->name);
} }

View file

@ -245,8 +245,12 @@ extern void monitor_close (int quitting);
extern char *monitor_supply_register (int regno, char *valstr); extern char *monitor_supply_register (int regno, char *valstr);
extern int monitor_expect (char *prompt, char *buf, int buflen); extern int monitor_expect (char *prompt, char *buf, int buflen);
extern int monitor_expect_prompt (char *buf, int buflen); extern int monitor_expect_prompt (char *buf, int buflen);
extern void monitor_printf (char *, ...) ATTR_FORMAT (printf, 1, 2); /* Note: The variable argument functions monitor_printf and
extern void monitor_printf_noecho (char *, ...) ATTR_FORMAT (printf, 1, 2); monitor_printf_noecho vararg do not take take standard format style
arguments. Instead they take custom formats interpretered directly
by monitor_vsprintf. */
extern void monitor_printf (char *, ...);
extern void monitor_printf_noecho (char *, ...);
extern void monitor_write (char *buf, int buflen); extern void monitor_write (char *buf, int buflen);
extern int monitor_readchar (void); extern int monitor_readchar (void);
extern char *monitor_get_dev_name (void); extern char *monitor_get_dev_name (void);

View file

@ -146,7 +146,7 @@ ocd_error (char *s, int error_code)
s = buf; s = buf;
} }
error (s); error ("%s", s);
} }
/* Return nonzero if the thread TH is still alive on the remote system. */ /* Return nonzero if the thread TH is still alive on the remote system. */

View file

@ -483,7 +483,7 @@ mips_error (char *string,...)
wrap_here (""); /* Force out any buffered output */ wrap_here (""); /* Force out any buffered output */
gdb_flush (gdb_stdout); gdb_flush (gdb_stdout);
if (error_pre_print) if (error_pre_print)
fprintf_filtered (gdb_stderr, error_pre_print); fputs_filtered (error_pre_print, gdb_stderr);
vfprintf_filtered (gdb_stderr, string, args); vfprintf_filtered (gdb_stderr, string, args);
fprintf_filtered (gdb_stderr, "\n"); fprintf_filtered (gdb_stderr, "\n");
va_end (args); va_end (args);