From 97f8dd09807815bafe225641b68c8526ba7756cc Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Thu, 27 Jun 2013 17:53:40 +0000 Subject: [PATCH] Fix catch_command_errors's prototype. gdb/ 2013-06-27 Pedro Alves * exceptions.c (catch_command_errors): Remove spurious space. * exceptions.h (catch_command_errors): Second parameter is "arg", not "command". --- gdb/ChangeLog | 6 ++++++ gdb/exceptions.c | 2 +- gdb/exceptions.h | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 87ebb73ae54..889097fd1fb 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2013-06-27 Pedro Alves + + * exceptions.c (catch_command_errors): Remove spurious space. + * exceptions.h (catch_command_errors): Second parameter is "arg", + not "command". + 2013-06-27 Yao Qi * common/create-version.sh: Update comments. Handle the case diff --git a/gdb/exceptions.c b/gdb/exceptions.c index 866905d7cf2..0cdd16b75f6 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; diff --git a/gdb/exceptions.h b/gdb/exceptions.h index 630eb2e56bd..7e3be95a04f 100644 --- a/gdb/exceptions.h +++ b/gdb/exceptions.h @@ -255,6 +255,6 @@ extern int catch_errors (catch_errors_ftype *, void *, char *, return_mask); typedef void (catch_command_errors_ftype) (char *, int); extern int catch_command_errors (catch_command_errors_ftype *func, - char *command, int from_tty, return_mask); + char *arg, int from_tty, return_mask); #endif -- 2.30.2