summaryrefslogtreecommitdiff
path: root/gdb/exceptions.h
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2013-06-27 17:53:40 +0000
committerPedro Alves <palves@redhat.com>2013-06-27 17:53:40 +0000
commit97f8dd09807815bafe225641b68c8526ba7756cc (patch)
treea349b26fb7fb63758b5f802c7c3ad74376ce611d /gdb/exceptions.h
parent8db339a6674ad8e8446bac821cb2dea396e43d6e (diff)
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.h')
-rw-r--r--gdb/exceptions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/exceptions.h b/gdb/exceptions.h
index 630eb2e56b..7e3be95a04 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