From 70d65fed3a230dcf17939786b5ac941423e29216 Mon Sep 17 00:00:00 2001 From: Garrett D'Amore Date: Mon, 16 Jan 2017 01:09:37 -0800 Subject: Fixes for 32-bit Windows compilation. --- src/platform/windows/win_thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/platform/windows/win_thread.c') diff --git a/src/platform/windows/win_thread.c b/src/platform/windows/win_thread.c index ef4859d6..e2568626 100644 --- a/src/platform/windows/win_thread.c +++ b/src/platform/windows/win_thread.c @@ -95,7 +95,7 @@ nni_plat_cv_until(nni_plat_cv *cv, nni_time until) msec = 0; } else { // times are in usec, but win32 wants millis - msec = (DWORD)(((until - now) + 999)/1000); + msec = (DWORD) (((until - now) + 999)/1000); } ok = SleepConditionVariableCS(&cv->cv, cv->cs, msec); -- cgit v1.2.3-70-g09d2