diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:36:04 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:01 -0700 |
commit | dd0e2830ee1e66c4bac079bacffc081a041cb5a8 (patch) | |
tree | eefbcf4894dfa5fa3881a06b8fa315e074cde273 /gdb/target.c | |
parent | fc6691b2590f61a2f1deeb9d73e7df23b1ced88a (diff) | |
download | binutils-dd0e2830ee1e66c4bac079bacffc081a041cb5a8.zip binutils-dd0e2830ee1e66c4bac079bacffc081a041cb5a8.tar.gz binutils-dd0e2830ee1e66c4bac079bacffc081a041cb5a8.tar.bz2 |
Add target_ops argument to to_get_bookmark
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_get_bookmark>: Add argument.
(target_get_bookmark): Add argument.
* target.c (dummy_get_bookmark): Add 'self' argument.
* record-full.c (record_full_get_bookmark): Add 'self' argument.
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/target.c b/gdb/target.c index 4d193c9..74725f8 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -3788,7 +3788,7 @@ dummy_make_corefile_notes (struct target_ops *self, /* Error-catcher for target_get_bookmark. */ static gdb_byte * -dummy_get_bookmark (char *ignore1, int ignore2) +dummy_get_bookmark (struct target_ops *self, char *ignore1, int ignore2) { tcomplain (); return NULL; |