diff options
Diffstat (limited to 'src/thread/Mutex.hxx')
-rw-r--r-- | src/thread/Mutex.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thread/Mutex.hxx b/src/thread/Mutex.hxx index 675af74b1..d2ebf4d1c 100644 --- a/src/thread/Mutex.hxx +++ b/src/thread/Mutex.hxx @@ -24,8 +24,8 @@ /* mingw-w64 4.6.3 lacks a std::mutex implementation */ -#include "CriticalSection.hxx" -typedef CriticalSection Mutex; +#include "GLibMutex.hxx" +typedef GLibMutex Mutex; #else |