summaryrefslogtreecommitdiffstats
path: root/osdep/threads-win32.h
diff options
context:
space:
mode:
Diffstat (limited to 'osdep/threads-win32.h')
-rw-r--r--osdep/threads-win32.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/threads-win32.h b/osdep/threads-win32.h
index f1c654a5cb..ec90fe9387 100644
--- a/osdep/threads-win32.h
+++ b/osdep/threads-win32.h
@@ -115,7 +115,7 @@ static inline int mp_cond_timedwait(mp_cond *cond, mp_mutex *mutex, int64_t time
timeout = MPCLAMP(timeout, 0, MP_TIME_MS_TO_NS(INFINITE)) / MP_TIME_MS_TO_NS(1);
int ret = 0;
- int hrt = mp_start_hires_timers(timeout);
+ int64_t hrt = mp_start_hires_timers(MP_TIME_MS_TO_NS(timeout));
BOOL bRet;
if (mutex->use_cs) {