commit 396c3e842089a9f2f98eb7181c8bf358cfb9de72
parent 204821eed7d743f022df8a27fad79f42d136e2c6
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date: Sat, 28 Feb 2026 12:10:50 +0100
Micro fix for macro
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mhd2/mhd_daemon.h b/src/mhd2/mhd_daemon.h
@@ -256,7 +256,7 @@ enum MHD_FIXED_ENUM_ mhd_IntPollType
* Check whether provided mhd_IntPollType value is "epoll"
*/
# define mhd_POLL_TYPE_INT_IS_EPOLL(poll_type) \
- (mhd_POLL_TYPE_EPOLL == poll_type)
+ (mhd_POLL_TYPE_EPOLL == (poll_type))
#else
# define mhd_POLL_TYPE_INT_IS_EPOLL(poll_type) (0)
#endif