From: Orestis Floros Date: Mon, 27 Aug 2018 19:19:36 +0000 (+0300) Subject: ipc_client_timeout: Fix build when not on linux X-Git-Tag: 4.16~51^2 X-Git-Url: https://git.sur5r.net/?p=i3%2Fi3;a=commitdiff_plain;h=37b879f4adcee8c7ab360512487ab617211a4e2a;ds=sidebyside ipc_client_timeout: Fix build when not on linux Also moved the 'end' label because it is unused otherwise. Reported here: https://github.com/Airblader/i3/issues/233 --- diff --git a/src/ipc.c b/src/ipc.c index 977fe377..3022d5b3 100644 --- a/src/ipc.c +++ b/src/ipc.c @@ -1414,12 +1414,14 @@ static void ipc_client_timeout(EV_P_ ev_timer *w, int revents) { } } cmdline = buf; -#endif -end: if (cmdline) { ELOG("client %p with pid %d and cmdline '%s' on fd %d timed out, killing\n", client, peercred.pid, cmdline, client->fd); - } else { + } + +end: +#endif + if (!cmdline) { ELOG("client %p on fd %d timed out, killing\n", client, client->fd); }