diff options
author | 2021-02-03 23:55:06 +0100 | |
---|---|---|
committer | 2021-02-03 23:55:06 +0100 | |
commit | 5ef9f5968012906b329c3de5fd5a5f9c5345dfa8 (patch) | |
tree | 1be332762b5eb40f55efb70651dd19fce712c842 | |
parent | 25ffa16730ddc1c2a3eae5df2b0223654cad5408 (diff) | |
download | libimobiledevice-5ef9f5968012906b329c3de5fd5a5f9c5345dfa8.tar.gz libimobiledevice-5ef9f5968012906b329c3de5fd5a5f9c5345dfa8.tar.bz2 |
tools: Flip order of winsock2.h and windows.h in idevicedebugserverproxy to get rid of compiler warning
-rw-r--r-- | tools/idevicedebugserverproxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/idevicedebugserverproxy.c b/tools/idevicedebugserverproxy.c index 37d03ea..405a5a4 100644 --- a/tools/idevicedebugserverproxy.c +++ b/tools/idevicedebugserverproxy.c | |||
@@ -32,8 +32,8 @@ | |||
32 | #include <errno.h> | 32 | #include <errno.h> |
33 | #include <signal.h> | 33 | #include <signal.h> |
34 | #ifdef WIN32 | 34 | #ifdef WIN32 |
35 | #include <windows.h> | ||
36 | #include <winsock2.h> | 35 | #include <winsock2.h> |
36 | #include <windows.h> | ||
37 | #else | 37 | #else |
38 | #include <sys/select.h> | 38 | #include <sys/select.h> |
39 | #endif | 39 | #endif |