commit | 3eb50a07bad4c2222e76df93b23a0161922150d1 | [log] [tgz] |
---|---|---|
author | Nikias Bassen <nikias@gmx.li> | Fri Feb 05 20:16:04 2021 +0100 |
committer | Nikias Bassen <nikias@gmx.li> | Fri Feb 05 20:16:04 2021 +0100 |
tree | a531fb3afb5ad47e3b4326ca9a7834756539296b | |
parent | f48ffb1a6cc32214c91f1cc09c572ab19a72924d [diff] |
tools: Flip order of windows.h and winsock2.h to get rid of compiler warning (Windows)
diff --git a/tools/inetcat.c b/tools/inetcat.c index 59c18b2..e4848c1 100644 --- a/tools/inetcat.c +++ b/tools/inetcat.c
@@ -37,8 +37,8 @@ #include <errno.h> #include <getopt.h> #ifdef WIN32 -#include <windows.h> #include <winsock2.h> +#include <windows.h> #else #include <sys/select.h> #include <sys/socket.h>