diff options
author | Eli Zaretskii <eliz@gnu.org> | 2009-04-11 17:57:34 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2009-04-11 17:57:34 +0000 |
commit | 685af672caee3f095a0bad488abbc168808ffc05 (patch) | |
tree | 819becc40f65f776404a1f5391dac496164a12d6 /gdb/go32-nat.c | |
parent | a04a463356f9b80b1e3550d75e9a51eeb5d427e3 (diff) | |
download | gdb-685af672caee3f095a0bad488abbc168808ffc05.zip gdb-685af672caee3f095a0bad488abbc168808ffc05.tar.gz gdb-685af672caee3f095a0bad488abbc168808ffc05.tar.bz2 |
* go32-nat.c (go32_attach, go32_detach:) Fix prototypes to be
consistent with the change from 2009-03-17.
Diffstat (limited to 'gdb/go32-nat.c')
-rw-r--r-- | gdb/go32-nat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c index e1f793e..4d58a57 100644 --- a/gdb/go32-nat.c +++ b/gdb/go32-nat.c @@ -167,8 +167,8 @@ static int dr_ref_count[4]; static int prog_has_started = 0; static void go32_open (char *name, int from_tty); static void go32_close (int quitting); -static void go32_attach (char *args, int from_tty); -static void go32_detach (char *args, int from_tty); +static void go32_attach (struct target_ops *ops, char *args, int from_tty); +static void go32_detach (struct target_ops *ops, char *args, int from_tty); static void go32_resume (struct target_ops *ops, ptid_t ptid, int step, enum target_signal siggnal); |