summaryrefslogtreecommitdiff
path: root/gdb/record.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-17 21:46:38 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:46:47 -0700
commit630d6a4ad3e46c9fb6f6976030d8edb3ded6cf1c (patch)
tree8ee0e3298368274db9830291992507dc7a755366 /gdb/record.c
parentc6cd7c02d1b67aafe4c791e2828c58733c68c03d (diff)
downloadbinutils-gdb-630d6a4ad3e46c9fb6f6976030d8edb3ded6cf1c.tar.gz
Add target_ops argument to to_info_record
2014-02-19 Tom Tromey <tromey@redhat.com> * target.h (struct target_ops) <to_info_record>: Add argument. * target.c (target_info_record): Add argument. * record.c (info_record_command): Add argument. * record-full.c (record_full_info): Add 'self' argument. * record-btrace.c (record_btrace_info): Add 'self' argument.
Diffstat (limited to 'gdb/record.c')
-rw-r--r--gdb/record.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/record.c b/gdb/record.c
index d8e1098fd72..9dd02e8eae2 100644
--- a/gdb/record.c
+++ b/gdb/record.c
@@ -287,7 +287,7 @@ info_record_command (char *args, int from_tty)
printf_filtered (_("Active record target: %s\n"), t->to_shortname);
if (t->to_info_record != NULL)
- t->to_info_record ();
+ t->to_info_record (t);
}
/* The "record save" command. */