summaryrefslogtreecommitdiff
path: root/thread_win32.c
diff options
context:
space:
mode:
Diffstat (limited to 'thread_win32.c')
-rw-r--r--thread_win32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/thread_win32.c b/thread_win32.c
index 2410cfae81..b77fdbb9a6 100644
--- a/thread_win32.c
+++ b/thread_win32.c
@@ -343,8 +343,8 @@ native_mutex_lock(rb_thread_lock_t *lock)
w32_mutex_lock(*lock);
#else
EnterCriticalSection(lock);
- return 0;
#endif
+ return 0;
}
static int
@@ -394,7 +394,7 @@ static void
native_mutex_destroy(rb_thread_lock_t *lock)
{
#if USE_WIN32_MUTEX
- w32_close_handle(lock);
+ w32_close_handle(*lock);
#else
DeleteCriticalSection(lock);
#endif