Catch up with GLib changes
authorDavid Zeuthen <davidz@redhat.com>
Thu, 1 Sep 2011 19:18:54 +0000 (15:18 -0400)
committerDavid Zeuthen <davidz@redhat.com>
Thu, 1 Sep 2011 19:18:54 +0000 (15:18 -0400)
s/g_unix_signal_add_watch_full/g_unix_signal_add_full/

Signed-off-by: David Zeuthen <davidz@redhat.com>
src/main.c

index d63dbce..5bec094 100644 (file)
@@ -125,11 +125,11 @@ main (int    argc,
   sigint_id = 0;
   if (!opt_no_sigint)
     {
-      sigint_id = g_unix_signal_add_watch_full (SIGINT,
-                                                G_PRIORITY_DEFAULT,
-                                                on_sigint,
-                                                NULL,  /* user_data */
-                                                NULL); /* GDestroyNotify */
+      sigint_id = g_unix_signal_add_full (SIGINT,
+                                          G_PRIORITY_DEFAULT,
+                                          on_sigint,
+                                          NULL,  /* user_data */
+                                          NULL); /* GDestroyNotify */
     }
 
   name_owner_id = g_bus_own_name (G_BUS_TYPE_SYSTEM,