aboutsummaryrefslogtreecommitdiff
path: root/gdb/target.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-17 21:36:17 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:46:01 -0700
commit3c80fb48ecf664f8e9c37af310ca3f7c5c54faec (patch)
treed933b5afc5f48f8a622c6c39befd0fef03563df5 /gdb/target.c
parentdd0e2830ee1e66c4bac079bacffc081a041cb5a8 (diff)
downloadbinutils-3c80fb48ecf664f8e9c37af310ca3f7c5c54faec.zip
binutils-3c80fb48ecf664f8e9c37af310ca3f7c5c54faec.tar.gz
binutils-3c80fb48ecf664f8e9c37af310ca3f7c5c54faec.tar.bz2
Add target_ops argument to to_goto_bookmark
2014-02-19 Tom Tromey <tromey@redhat.com> * target.h (struct target_ops) <to_goto_bookmark>: Add argument. (target_goto_bookmark): Add argument. * target.c (dummy_goto_bookmark): Add 'self' argument. * record-full.c (record_full_goto_bookmark): Add 'self' argument.
Diffstat (limited to 'gdb/target.c')
-rw-r--r--gdb/target.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/target.c b/gdb/target.c
index 74725f8..4d67bc3 100644
--- a/gdb/target.c
+++ b/gdb/target.c
@@ -3796,7 +3796,7 @@ dummy_get_bookmark (struct target_ops *self, char *ignore1, int ignore2)
/* Error-catcher for target_goto_bookmark. */
static void
-dummy_goto_bookmark (gdb_byte *ignore, int from_tty)
+dummy_goto_bookmark (struct target_ops *self, gdb_byte *ignore, int from_tty)
{
tcomplain ();
}