diff options
author | Nikias Bassen | 2021-02-05 20:16:04 +0100 |
---|---|---|
committer | Nikias Bassen | 2021-02-05 20:16:04 +0100 |
commit | 3eb50a07bad4c2222e76df93b23a0161922150d1 (patch) | |
tree | a531fb3afb5ad47e3b4326ca9a7834756539296b | |
parent | f48ffb1a6cc32214c91f1cc09c572ab19a72924d (diff) | |
download | libusbmuxd-3eb50a07bad4c2222e76df93b23a0161922150d1.tar.gz libusbmuxd-3eb50a07bad4c2222e76df93b23a0161922150d1.tar.bz2 |
tools: Flip order of windows.h and winsock2.h to get rid of compiler warning (Windows)
-rw-r--r-- | tools/inetcat.c | 2 |
1 files changed, 1 insertions, 1 deletions
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> |