diff options
author | Pedro Alves <palves@redhat.com> | 2013-06-27 17:53:40 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2013-06-27 17:53:40 +0000 |
commit | 97f8dd09807815bafe225641b68c8526ba7756cc (patch) | |
tree | a349b26fb7fb63758b5f802c7c3ad74376ce611d /gdb/exceptions.c | |
parent | 8db339a6674ad8e8446bac821cb2dea396e43d6e (diff) | |
download | gdb-97f8dd09807815bafe225641b68c8526ba7756cc.zip gdb-97f8dd09807815bafe225641b68c8526ba7756cc.tar.gz gdb-97f8dd09807815bafe225641b68c8526ba7756cc.tar.bz2 |
Fix catch_command_errors's prototype.
gdb/
2013-06-27 Pedro Alves <palves@redhat.com>
* exceptions.c (catch_command_errors): Remove spurious space.
* exceptions.h (catch_command_errors): Second parameter is "arg",
not "command".
Diffstat (limited to 'gdb/exceptions.c')
-rw-r--r-- | gdb/exceptions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/exceptions.c b/gdb/exceptions.c index 866905d..0cdd16b 100644 --- a/gdb/exceptions.c +++ b/gdb/exceptions.c @@ -563,7 +563,7 @@ catch_errors (catch_errors_ftype *func, void *func_args, char *errstring, } int -catch_command_errors (catch_command_errors_ftype * command, +catch_command_errors (catch_command_errors_ftype *command, char *arg, int from_tty, return_mask mask) { volatile struct gdb_exception e; |