fix missing parenthesis

This commit is contained in:
Andrés 2016-07-28 00:05:57 -05:00 committed by GitHub
parent 6c14477bce
commit c5ee5caf8a

View File

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