From 794d912cd7e05d3d97303e2578439362685edfcb Mon Sep 17 00:00:00 2001 From: Aki Date: Fri, 29 May 2020 22:37:52 +0200 Subject: Changed style of if condition --- plop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plop.c b/plop.c index 963b7b9..2a52b22 100644 --- a/plop.c +++ b/plop.c @@ -161,7 +161,7 @@ int handle_server(struct pollfd * fdv, int fdc, const int size) fdc++; } - if (errno != EWOULDBLOCK && errno != EAGAIN) + if (EWOULDBLOCK != errno && EAGAIN != errno) { return -1; } -- cgit v1.1