From c5ee5caf8a97e7d5e9ab12866cb4f62b819c13d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s?= Date: Thu, 28 Jul 2016 00:05:57 -0500 Subject: [PATCH] fix missing parenthesis --- input/input_remote.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input/input_remote.c b/input/input_remote.c index 4be97f84a4..66f722c51c 100644 --- a/input/input_remote.c +++ b/input/input_remote.c @@ -248,7 +248,7 @@ void input_remote_poll(input_remote_t *handle) if (ret == sizeof(msg)) input_remote_parse_packet(&msg, user); - else if ((ret != -1) || ((errno != EAGAIN) && (errno != ENOENT)) + else if ((ret != -1) || ((errno != EAGAIN) && (errno != ENOENT))) #endif { ol_state->buttons[user] = 0;