From 1d4f64d745cad9a84527fdfa06529c3e79ca9c7f Mon Sep 17 00:00:00 2001 From: o9000 Date: Mon, 8 Aug 2016 10:58:18 +0200 Subject: [PATCH] Fixed typo causing missing startup notifications --- src/tint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tint.c b/src/tint.c index b643ace..7a4610a 100644 --- a/src/tint.c +++ b/src/tint.c @@ -487,7 +487,7 @@ void init_X11_post_config() fcntl(sn_pipe[0], F_SETFL, O_NONBLOCK | fcntl(sn_pipe[0], F_GETFL)); fcntl(sn_pipe[1], F_SETFL, O_NONBLOCK | fcntl(sn_pipe[1], F_GETFL)); sn_pipe_valid = 1; - struct sigaction act = {.sa_handler = sigchld_handler, .sa_flags = SA_NOCLDWAIT | SA_RESTART}; + struct sigaction act = {.sa_handler = sigchld_handler, .sa_flags = SA_RESTART}; if (sigaction(SIGCHLD, &act, 0)) { perror("sigaction"); }