aboutsummaryrefslogtreecommitdiff
path: root/gdb/top.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>1999-01-17 23:23:42 +0000
committerAndrew Cagney <cagney@redhat.com>1999-01-17 23:23:42 +0000
commit6e45c399c15ff44f8d07570f9874f52e45620afd (patch)
tree83621a718a00ba0707b38b3821f550b7af1a3ea4 /gdb/top.c
parent2bef607561a795e82149e50ebeaca94c384a87ee (diff)
downloadfsf-binutils-gdb-6e45c399c15ff44f8d07570f9874f52e45620afd.zip
fsf-binutils-gdb-6e45c399c15ff44f8d07570f9874f52e45620afd.tar.gz
fsf-binutils-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/top.c b/gdb/top.c
index ae24f19..81fe1e3 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -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;