From 46c89348b973b1088a4310e740def9859ef05408 Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Tue, 1 Jan 2019 18:03:11 +0100 Subject: tvnow: silence conversion warnings MinGW-w64 defaults to targeting Windows 7 now, so GetTickCount64 is used and the milliseconds are represented as unsigned long long, leading to a compiler warning when implicitly converting them to long. --- tests/server/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/server') diff --git a/tests/server/util.c b/tests/server/util.c index df1e35da0..c3935f58a 100644 --- a/tests/server/util.c +++ b/tests/server/util.c @@ -422,7 +422,7 @@ static struct timeval tvnow(void) DWORD milliseconds = GetTickCount(); #endif now.tv_sec = (long)(milliseconds / 1000); - now.tv_usec = (milliseconds % 1000) * 1000; + now.tv_usec = (long)((milliseconds % 1000) * 1000); return now; } -- cgit v1.2.3