summaryrefslogtreecommitdiff
path: root/ssl/quic/quic_reactor.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssl/quic/quic_reactor.c')
-rw-r--r--ssl/quic/quic_reactor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/quic/quic_reactor.c b/ssl/quic/quic_reactor.c
index ed5c7955db..47255f61ed 100644
--- a/ssl/quic/quic_reactor.c
+++ b/ssl/quic/quic_reactor.c
@@ -131,14 +131,14 @@ static int poll_two_fds(int rfd, int rfd_want_read,
struct timeval tv, *ptv;
int maxfd, pres;
-#ifndef OSSL_SYS_WINDOWS
+# ifndef OSSL_SYS_WINDOWS
/*
* On Windows there is no relevant limit to the magnitude of a fd value (see
* above). On *NIX the fd_set uses a bitmap and we must check the limit.
*/
if (rfd >= FD_SETSIZE || wfd >= FD_SETSIZE)
return 0;
-#endif
+# endif
FD_ZERO(&rfd_set);
FD_ZERO(&wfd_set);