diff options
author | J.T. Conklin <jtc@acorntoolworks.com> | 1995-05-19 22:44:51 +0000 |
---|---|---|
committer | J.T. Conklin <jtc@acorntoolworks.com> | 1995-05-19 22:44:51 +0000 |
commit | e3033bb0860511d42dd38962b1dda9d2c1f7b79d (patch) | |
tree | 7b8cea526ac5b074d77b7509fd219c166260f626 /gdb/top.c | |
parent | 078d1a5afa60040887118f869dbe49b9bb929b46 (diff) | |
download | gdb-e3033bb0860511d42dd38962b1dda9d2c1f7b79d.zip gdb-e3033bb0860511d42dd38962b1dda9d2c1f7b79d.tar.gz gdb-e3033bb0860511d42dd38962b1dda9d2c1f7b79d.tar.bz2 |
* defs.h (ATTR_FORMAT): New macro, expands to gcc's format
attribute when compiled by gcc.
* defs.h, language.h, monitor.h: Changed many function
declarations to use ATTR_FORMAT.
* breakpoint.c (delete_command); source.c (directory_command);
top.c (define_command): Changed call to query() that had too
many arguments.
* printcmd.c (address_info): Changed call to printf_filtered()
that had too many arguments.
Diffstat (limited to 'gdb/top.c')
-rw-r--r-- | gdb/top.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2619,7 +2619,7 @@ define_command (comname, from_tty) { warning ("Your new `%s' command does not hook any existing command.", comname); - if (!query ("Proceed? ", (char *)0)) + if (!query ("Proceed? ")) error ("Not confirmed."); } } |