diff options
Diffstat (limited to 'gdb/inf-loop.c')
-rw-r--r-- | gdb/inf-loop.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/inf-loop.c b/gdb/inf-loop.c index c40ae23..cf746b8 100644 --- a/gdb/inf-loop.c +++ b/gdb/inf-loop.c @@ -34,13 +34,12 @@ /* General function to handle events in the inferior. */ void -inferior_event_handler (enum inferior_event_type event_type, - gdb_client_data client_data) +inferior_event_handler (enum inferior_event_type event_type) { switch (event_type) { case INF_REG_EVENT: - fetch_inferior_event (client_data); + fetch_inferior_event (); break; case INF_EXEC_COMPLETE: |