From c55ae9956b69979e3f7c504d2fb727c5d76198a2 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 29 Apr 2016 11:04:21 -0400 Subject: [PATCH] Fix another -Wunused-result --- swaybar/bar.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/swaybar/bar.c b/swaybar/bar.c index 94ed9daca..957e5bdf3 100644 --- a/swaybar/bar.c +++ b/swaybar/bar.c @@ -24,7 +24,10 @@ static void bar_init(struct bar *bar) { static void spawn_status_cmd_proc(struct bar *bar) { if (bar->config->status_command) { int pipefd[2]; - pipe(pipefd); + if (pipe(pipefd) != 0) { + sway_log(L_ERROR, "Unable to create pipe for status_command fork"); + return; + } bar->status_command_pid = fork(); if (bar->status_command_pid == 0) { close(pipefd[0]);