diff options
Diffstat (limited to 'gdb/tui/tui-hooks.c')
-rw-r--r-- | gdb/tui/tui-hooks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/tui/tui-hooks.c b/gdb/tui/tui-hooks.c index aa4ecca..7dee03e 100644 --- a/gdb/tui/tui-hooks.c +++ b/gdb/tui/tui-hooks.c @@ -160,7 +160,7 @@ tui_event_modify_breakpoint (int number) Leave curses mode and setup program mode. */ static ptid_t tui_target_wait_hook (ptid_t pid, - struct target_waitstatus *status) + struct target_waitstatus *status, int options) { ptid_t res; @@ -174,7 +174,7 @@ tui_target_wait_hook (ptid_t pid, } #endif tui_target_has_run = 1; - res = target_wait (pid, status); + res = target_wait (pid, status, options); if (tui_active) { |