aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/microhttpd/mhd_itc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/mhd_itc.h b/src/microhttpd/mhd_itc.h
index b41bfc33..0f10a2bc 100644
--- a/src/microhttpd/mhd_itc.h
+++ b/src/microhttpd/mhd_itc.h
@@ -59,7 +59,7 @@ typedef int MHD_itc_;
59 * @param itc the itc to initialise 59 * @param itc the itc to initialise
60 * @return non-zero if succeeded, zero otherwise 60 * @return non-zero if succeeded, zero otherwise
61 */ 61 */
62#define MHD_itc_init_(itc) ((-1 == ((itc) = eventfd (0, EFD_CLOEXEC | EFD_NONBLOCK))) ? 0 : !0) 62#define MHD_itc_init_(itc) (-1 != ((itc) = eventfd (0, EFD_CLOEXEC | EFD_NONBLOCK)))
63 63
64/*** 64/***
65 * Get description string of last errno for pipe operations. 65 * Get description string of last errno for pipe operations.