]> git.sur5r.net Git - i3/i3/commitdiff
We don't need sig_quit
authorAxel Wagner <mail@merovius.de>
Thu, 11 Nov 2010 02:01:40 +0000 (03:01 +0100)
committerAxel Wagner <mail@merovius.de>
Thu, 11 Nov 2010 02:01:40 +0000 (03:01 +0100)
i3bar/src/main.c

index 6624f2ff95aeb57e0e689929d4d6d799c60631c1..35ea92100c94d958bf005d8a7a4e4de947fecf57 100644 (file)
@@ -233,7 +233,7 @@ int main(int argc, char **argv) {
     /* We listen to SIGTERM/QUIT/INT and try to exit cleanly, by stopping the main-loop.
      * We only need those watchers on the stack, so putting them on the stack saves us
      * some calls to free() */
-    ev_signal sig_term, sig_quit, sig_int, sig_hup;
+    ev_signal sig_term, sig_int, sig_hup;
 
     ev_signal_init(&sig_term, &sig_cb, SIGTERM);
     ev_signal_init(&sig_int, &sig_cb, SIGINT);