From 520bd9e49f7f4f65c39ef12090220863bb02b111 Mon Sep 17 00:00:00 2001 From: Marc Hoersken Date: Wed, 23 Dec 2015 15:03:40 +0100 Subject: tests first.c: fix calculation of sleep timeout on Windows Not converting to double caused small timeouts to be skipped. --- tests/libtest/first.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/libtest/first.c b/tests/libtest/first.c index d693173f1..79c73fda7 100644 --- a/tests/libtest/first.c +++ b/tests/libtest/first.c @@ -56,7 +56,7 @@ int select_wrapper(int nfds, fd_set *rd, fd_set *wr, fd_set *exc, * select() can not be used to sleep without a single fd_set. */ if(!nfds) { - Sleep(1000*tv->tv_sec + tv->tv_usec/1000); + Sleep((1000*tv->tv_sec) + (DWORD)(((double)tv->tv_usec)/1000.0)); return 0; } #endif -- cgit v1.2.3