aboutsummaryrefslogtreecommitdiff
path: root/src/common/thread.cpp
diff options
context:
space:
mode:
authorJannik Vogel <email@jannikvogel.de>2016-12-03 21:08:02 +0100
committerJannik Vogel <email@jannikvogel.de>2016-12-05 19:09:16 +0100
commit45d941d62e2accea92f5b5183afe760e69a618ac (patch)
tree123b8c13185b472a1fa413c3b8caf42980106207 /src/common/thread.cpp
parent5234f2d287e93509a84a064a4655281cdb528d88 (diff)
Support mingw cross-compile
Diffstat (limited to 'src/common/thread.cpp')
-rw-r--r--src/common/thread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/thread.cpp b/src/common/thread.cpp
index 9bb2f4e1d8..9e207118fd 100644
--- a/src/common/thread.cpp
+++ b/src/common/thread.cpp
@@ -6,7 +6,7 @@
#ifdef __APPLE__
#include <mach/mach.h>
#elif defined(_WIN32)
-#include <Windows.h>
+#include <windows.h>
#else
#if defined(__Bitrig__) || defined(__DragonFly__) || defined(__FreeBSD__) || defined(__OpenBSD__)
#include <pthread_np.h>