diff options
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 1efa23b..89b1590 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -5708,7 +5708,7 @@ until_break_command_continuation (struct continuation_arg *arg) { struct cleanup *cleanups; - cleanups = (struct cleanup *) arg->data; + cleanups = (struct cleanup *) arg->data.pointer; do_exec_cleanups (cleanups); } @@ -5772,8 +5772,8 @@ until_break_command (arg, from_tty) the exec_cleanup_chain. */ arg1 = (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); - arg1->next = NULL; - arg1->data = (PTR) old_chain; + arg1->next = NULL; + arg1->data.pointer = old_chain; add_continuation (until_break_command_continuation, arg1); } |