From da7616b029f353b6196b1828c64890caf348c408 Mon Sep 17 00:00:00 2001 From: Kubat <mael.martin31@gmail.com> Date: Wed, 1 Dec 2021 21:48:52 +0100 Subject: [PATCH] MISC: The new signature of the W's version of poll should be OK --- inc/lektor/internal/os.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/lektor/internal/os.h b/inc/lektor/internal/os.h index d85395c6..614ac88c 100644 --- a/inc/lektor/internal/os.h +++ b/inc/lektor/internal/os.h @@ -221,7 +221,7 @@ is_error_broken_pipe(int UNUSED error) #if defined(LKT_OS_WIN) && (LKT_OS_WIN == 1) PRIVATE_FUNCTION int -poll(fd_set *fds, nfds_t nfds, int timeout) +poll(LPWSAPOLLFD *fds, ULONG nfds, INT timeout) { return WSAPoll(fds, nfds, timeout); } -- GitLab