diff options
author | Andrew Cagney <cagney@redhat.com> | 1999-01-17 23:23:42 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1999-01-17 23:23:42 +0000 |
commit | 6e45c399c15ff44f8d07570f9874f52e45620afd (patch) | |
tree | 83621a718a00ba0707b38b3821f550b7af1a3ea4 /gdb/top.c | |
parent | 2bef607561a795e82149e50ebeaca94c384a87ee (diff) | |
download | gdb-6e45c399c15ff44f8d07570f9874f52e45620afd.zip gdb-6e45c399c15ff44f8d07570f9874f52e45620afd.tar.gz gdb-6e45c399c15ff44f8d07570f9874f52e45620afd.tar.bz2 |
catch_errors() takes PTR argument/func instead of char* argument/func.
Update breakpoint.c.
Fix (?) cover_target_enable_exception_callback(). Wasn't returning a
value.
Diffstat (limited to 'gdb/top.c')
-rw-r--r-- | gdb/top.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -516,7 +516,7 @@ return_to_top_level (reason) int catch_errors (func, args, errstring, mask) - int (*func) PARAMS ((char *)); + catch_errors_ftype *func; PTR args; char *errstring; return_mask mask; |