diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-01-14 23:27:14 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-01-14 23:27:14 +0000 |
commit | e2fe04a212d4987262b2d4a1d89df9ea5e351ea3 (patch) | |
tree | 23c41c30984ab9cf42344c00de5b4d48b3732710 /gdb/breakpoint.c | |
parent | eb55d9fdf949ef6e29edfccbcffa9b82aac38682 (diff) | |
download | gdb-e2fe04a212d4987262b2d4a1d89df9ea5e351ea3.tar.gz |
2005-01-14 Andrew Cagney <cagney@gnu.org>
* exceptions.h (catch_exceptions): Delete errstring parameter.
(catch_exceptions_with_msg): Ditto.
* exceptions.c (catch_exceptions_with_msg): Update.
(catch_exceptions): Update.
* symfile-mem.c (add_vsyscall_page): Update.
* frame.c (get_current_frame): Update.
* wrapper.c (gdb_value_struct_elt): Update.
* exceptions.c (catch_exceptions): Update.
* thread.c (gdb_list_thread_ids, gdb_thread_select): Update.
* breakpoint.c (gdb_breakpoint_query, gdb_breakpoint): Update.
* remote-fileio.c (remote_fileio_request): Update.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 9b77543c85b..690ec5d218a 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -3604,7 +3604,7 @@ gdb_breakpoint_query (struct ui_out *uiout, int bnum, char **error_message) /* For the moment we don't trust print_one_breakpoint() to not throw an error. */ return catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args, - NULL, error_message, RETURN_MASK_ALL); + error_message, RETURN_MASK_ALL); } /* Return non-zero if B is user settable (breakpoints, watchpoints, @@ -5437,7 +5437,7 @@ gdb_breakpoint (char *address, char *condition, args.thread = thread; args.ignore_count = ignore_count; return catch_exceptions_with_msg (uiout, do_captured_breakpoint, &args, - NULL, error_message, RETURN_MASK_ALL); + error_message, RETURN_MASK_ALL); } |