From 630d6a4ad3e46c9fb6f6976030d8edb3ded6cf1c Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 17 Dec 2013 21:46:38 -0700 Subject: Add target_ops argument to to_info_record 2014-02-19 Tom Tromey * target.h (struct target_ops) : 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. --- gdb/record.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/record.c') 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. */ -- cgit v1.2.1