From: Michael Stapelberg Date: Tue, 16 Jun 2009 16:43:13 +0000 (+0200) Subject: Bugfix: Exit upon errors from printf in dzen2-mode (usually SIGPIPE because dzen2... X-Git-Tag: 1.1~5 X-Git-Url: https://git.sur5r.net/?p=i3%2Fi3status;a=commitdiff_plain;h=747c814453bd673a13fdeac23e3c081cc81b8460 Bugfix: Exit upon errors from printf in dzen2-mode (usually SIGPIPE because dzen2 exited) This prevents i3status processes from still running on your system after you’ve restarted X and dzen2 is long gone. --- diff --git a/i3status.c b/i3status.c index ad4384f..fd781cb 100644 --- a/i3status.c +++ b/i3status.c @@ -221,11 +221,18 @@ static void setup(void) { static void write_to_statusbar(const char *name, const char *message, bool final_entry) { #ifdef DZEN if (final_entry) { - (void)printf("%s^p(6)\n", message); + if (printf("%s^p(6)\n", message) < 0) { + perror("printf"); + exit(1); + } + fflush(stdout); return; } - (void)printf("%s" BAR, message); + if (printf("%s" BAR, message) < 0) { + perror("printf"); + exit(1); + } return; #endif