From: Axel Wagner Date: Thu, 11 Nov 2010 02:01:40 +0000 (+0100) Subject: We don't need sig_quit X-Git-Tag: 4.0.1~7^2~39 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a88f7fb392828493fd1c44adbeb76a07afa49ab5;p=i3%2Fi3 We don't need sig_quit --- diff --git a/i3bar/src/main.c b/i3bar/src/main.c index 6624f2ff..35ea9210 100644 --- a/i3bar/src/main.c +++ b/i3bar/src/main.c @@ -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);