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/frame.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/frame.c')
-rw-r--r-- | gdb/frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/frame.c b/gdb/frame.c index 13a9f1d2734..054b062fdeb 100644 --- a/gdb/frame.c +++ b/gdb/frame.c @@ -803,7 +803,7 @@ get_current_frame (void) struct frame_info *sentinel_frame = create_sentinel_frame (current_regcache); if (catch_exceptions (uiout, unwind_to_current_frame, sentinel_frame, - NULL, RETURN_MASK_ERROR) != 0) + RETURN_MASK_ERROR) != 0) { /* Oops! Fake a current frame? Is this useful? It has a PC of zero, for instance. */ |