diff --git a/sway/config.c b/sway/config.c index ae09d4f8..0014b33a 100644 --- a/sway/config.c +++ b/sway/config.c @@ -940,8 +940,8 @@ static void invoke_swaybar(struct bar_config *bar) { if (!command) { const char msg[] = "Unable to allocate swaybar command string"; int len = sizeof(msg); - write(filedes[1], &len, sizeof(int)); - write(filedes[1], msg, len); + if (write(filedes[1], &len, sizeof(int))) {}; + if (write(filedes[1], msg, len)) {}; close(filedes[1]); _exit(EXIT_FAILURE); }