Browse Source

common/misc: use windows.h

linux-mingw does not really like this.
Zhu PengFei 8 years ago
parent
commit
59d18ef55b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/common/misc.cpp

+ 1 - 1
src/common/misc.cpp

@@ -4,7 +4,7 @@
 
 #include <cstddef>
 #ifdef _WIN32
-#include <Windows.h>
+#include <windows.h>
 #else
 #include <cerrno>
 #include <cstring>