summaryrefslogtreecommitdiff
path: root/src/mongo/util/net/socket_poll.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/net/socket_poll.h')
-rw-r--r--src/mongo/util/net/socket_poll.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/util/net/socket_poll.h b/src/mongo/util/net/socket_poll.h
index b3e8ed2fcd3..379dc8226be 100644
--- a/src/mongo/util/net/socket_poll.h
+++ b/src/mongo/util/net/socket_poll.h
@@ -29,10 +29,10 @@
#pragma once
#ifndef _WIN32
-# include <sys/poll.h>
-#endif // ndef _WIN32
+#include <sys/poll.h>
+#endif // ndef _WIN32
namespace mongo {
- bool isPollSupported();
- int socketPoll(pollfd* fdarray, unsigned long nfds, int timeout);
+bool isPollSupported();
+int socketPoll(pollfd* fdarray, unsigned long nfds, int timeout);
}