From e312ab76c4d93f2e637ac0c73987b22cd43420c7 Mon Sep 17 00:00:00 2001 From: psykose Date: Sun, 17 Nov 2024 08:36:09 +0100 Subject: [PATCH] Xpoll.h.in: use standard poll.h include avoids a bunch of warnings when building against musl libc that warns on this pedantically: ``` In file included from /usr/include/X11/Xpoll.h:166: /usr/include/sys/poll.h:1:2: warning: redirecting incorrect #include to [-W#warnings] ``` Part-of: --- include/X11/Xpoll.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/X11/Xpoll.h.in b/include/X11/Xpoll.h.in index 9f127e1..f7c42e6 100644 --- a/include/X11/Xpoll.h.in +++ b/include/X11/Xpoll.h.in @@ -163,7 +163,7 @@ typedef struct fd_set { } #else /* USE_POLL */ -#include +#include #endif /* USE_POLL */ #else /* WIN32 */