1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-05-13 07:26:21 +02:00

Fix another -Wunused-result

This commit is contained in:
Drew DeVault 2016-04-29 11:04:21 -04:00
parent 3be3867474
commit c55ae9956b

View File

@ -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]);