aboutsummaryrefslogtreecommitdiff
path: root/src/Platform/Win32/Mutex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Platform/Win32/Mutex.c')
-rw-r--r--src/Platform/Win32/Mutex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Platform/Win32/Mutex.c b/src/Platform/Win32/Mutex.c
index b5af90e..fc0f78c 100644
--- a/src/Platform/Win32/Mutex.c
+++ b/src/Platform/Win32/Mutex.c
@@ -40,7 +40,7 @@ int BH_MutexUnlock(BH_Mutex *mutex)
}
-int BH_MutexLockTry(BH_Mutex *mutex)
+int BH_MutexTryLock(BH_Mutex *mutex)
{
if (!TryEnterCriticalSection(&mutex->handle))
return BH_ERROR;