Add some more casts (2/2)
[deliverable/binutils-gdb.git] / gdb / remote-notif.c
index 3241e7851258dbd218efad59f438bbc6390c45e8..a8a628517b7fed780c4af9b7d5da7b9c26817da8 100644 (file)
@@ -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.  */
This page took 0.028397 seconds and 4 git commands to generate.