aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote-notif.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/remote-notif.c')
-rw-r--r--gdb/remote-notif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-notif.c b/gdb/remote-notif.c
index 3241e78..a8a6285 100644
--- a/gdb/remote-notif.c
+++ b/gdb/remote-notif.c
@@ -117,7 +117,7 @@ static void
remote_async_get_pending_events_handler (gdb_client_data data)
{
gdb_assert (non_stop);
- remote_notif_process (data, NULL);
+ remote_notif_process ((struct remote_notif_state *) data, NULL);
}
/* Remote notification handler. Parse BUF, queue notification and
@@ -230,7 +230,7 @@ notif_event_xfree (struct notif_event *event)
static void
do_notif_event_xfree (void *arg)
{
- notif_event_xfree (arg);
+ notif_event_xfree ((struct notif_event *) arg);
}
/* Return an allocated remote_notif_state. */