1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-26 16:19:03 +00:00

Fix MSVC warning about (void)

This commit is contained in:
dmiller
2023-01-05 23:45:56 +00:00
parent 473e9afea5
commit ad9d7b7a1b

View File

@@ -339,7 +339,7 @@ static inline int checked_fd_isset(int fd, fd_set *fds) {
}
static inline void checked_fd_clr(int fd, fd_set *fds) {
CHECK_FD_OP(FD_CLR, (void));
CHECK_FD_OP(FD_CLR, /**/);
}
static inline void checked_fd_set(int fd, fd_set *fds) {
@@ -351,7 +351,7 @@ static inline void checked_fd_set(int fd, fd_set *fds) {
abort();
}
#endif
CHECK_FD_OP(FD_SET, (void));
CHECK_FD_OP(FD_SET, /**/);
}