diff options
Diffstat (limited to 'gdb/mips-linux-nat.c')
-rw-r--r-- | gdb/mips-linux-nat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/mips-linux-nat.c b/gdb/mips-linux-nat.c index 61e83c6..d323a82 100644 --- a/gdb/mips-linux-nat.c +++ b/gdb/mips-linux-nat.c @@ -60,7 +60,7 @@ static void (*super_fetch_registers) (struct target_ops *, static void (*super_store_registers) (struct target_ops *, struct regcache *, int); -static void (*super_close) (int); +static void (*super_close) (void); /* Map gdb internal register number to ptrace ``address''. These ``addresses'' are normally defined in <asm/ptrace.h>. @@ -1114,7 +1114,7 @@ mips_linux_remove_watchpoint (CORE_ADDR addr, int len, int type, super implementation. */ static void -mips_linux_close (int quitting) +mips_linux_close (void) { struct mips_watchpoint *w; struct mips_watchpoint *nw; @@ -1130,7 +1130,7 @@ mips_linux_close (int quitting) current_watches = NULL; if (super_close) - super_close (quitting); + super_close (); } void _initialize_mips_linux_nat (void); |