tools: Avoid trying to remove a signal handler that has already been removed
authorThibault Saunier <tsaunier@gnome.org>
Sat, 13 Dec 2014 14:13:32 +0000 (15:13 +0100)
committerThibault Saunier <tsaunier@gnome.org>
Sat, 13 Dec 2014 14:14:39 +0000 (15:14 +0100)
tools/ges-launch.c

index e84c161..4f8738b 100644 (file)
@@ -61,7 +61,7 @@ intr_handler (gpointer user_data)
   g_main_loop_quit (mainloop);
 
   /* remove signal handler */
-  return FALSE;
+  return TRUE;
 }
 #endif /* G_OS_UNIX */