diff options
author | Jason Molenda <jmolenda@apple.com> | 1999-10-05 23:13:56 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1999-10-05 23:13:56 +0000 |
commit | 2acceee2182a942e6a79a972009540990f4dfabf (patch) | |
tree | 2ed7ca473f0b49181f1d0214c3450a7eb17f7bcb /gdb/target.c | |
parent | 3e9c42873ee1d0bbb03039baea78c617174f9269 (diff) | |
download | gdb-2acceee2182a942e6a79a972009540990f4dfabf.zip gdb-2acceee2182a942e6a79a972009540990f4dfabf.tar.gz gdb-2acceee2182a942e6a79a972009540990f4dfabf.tar.bz2 |
import gdb-1999-10-04 snapshot
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/target.c b/gdb/target.c index 01e01c2..6d0b796 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -452,7 +452,7 @@ cleanup_target (t) de_fault (to_core_file_to_sym_file, (char *(*)PARAMS ((char *))) return_zero); de_fault (to_can_async_p, (int (*) (void)) return_zero); de_fault (to_is_async_p, (int (*) (void)) return_zero); - de_fault (to_async, (void (*) (void (*) (int, void*, int), void*)) tcomplain); + de_fault (to_async, (void (*) (void (*) (enum inferior_event_type, void*), void*)) tcomplain); #undef de_fault } @@ -1009,7 +1009,7 @@ target_link (modname, t_reloc) error ("Unable to link to %s and get relocation in rombug", modname); } else - *t_reloc = (CORE_ADDR) - 1; + *t_reloc = (CORE_ADDR) -1; } /* Look through the list of possible targets for a target that can |