This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[COMMIT PATCH] Fix catch_command_errors's prototype.


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".
---
 gdb/exceptions.c |    2 +-
 gdb/exceptions.h |    2 +-
 2 files changed, 2 insertions(+), 2 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;
diff --git a/gdb/exceptions.h b/gdb/exceptions.h
index 630eb2e..7e3be95 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]