2000-03-30 Michael Snyder <msnyder@cleaver.cygnus.com>
* defs.h (struct continuation_arg): make 'data' a union, to avoid casting problems when int and pointer are not the same size. * event-top.c (command_handler): use data as a union. (command_line_handler_continuation): ditto. * infcmd.c (step_1_continuation): use data as a union. Re-indent. (step_once): ditto. (finish_command_continuation): ditto. (finish_command): ditto. * breakpoint.c (until_break_command): use data as a union. (until_break_command_continuation): ditto. * utils.c (add_intermediate_continuation): fix typo in comment.
This commit is contained in:
parent
59233f88f1
commit
57e687d9ad
6 changed files with 52 additions and 35 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue