mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 09:58:19 +08:00
Add target_ops argument to to_delete_record
2014-02-19 Tom Tromey <tromey@redhat.com> * target.h (struct target_ops) <to_delete_record>: Add argument. * target.c (target_delete_record): Add argument. * record-full.c (record_full_delete): Add 'self' argument.
This commit is contained in:
@ -4331,7 +4331,7 @@ target_delete_record (void)
|
||||
for (t = current_target.beneath; t != NULL; t = t->beneath)
|
||||
if (t->to_delete_record != NULL)
|
||||
{
|
||||
t->to_delete_record ();
|
||||
t->to_delete_record (t);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user