summaryrefslogtreecommitdiff
path: root/gdb/exceptions.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2013-06-27 17:53:39 +0000
committerPedro Alves <palves@redhat.com>2013-06-27 17:53:39 +0000
commitb3e2bade1b515a50e680fbf5771f5a451e72fcae (patch)
tree9c900e1ce565b54bf4b02dcc21da3b22abbb9180 /gdb/exceptions.c
parent68ca8a65acdcf8932309fdbced88b7f6b4fa0346 (diff)
downloadgdb-b3e2bade1b515a50e680fbf5771f5a451e72fcae.tar.gz
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.c2
1 files changed, 1 insertions, 1 deletions
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;