From f3645d73073e262d9dba2f4d69a9848be435b7df Mon Sep 17 00:00:00 2001 From: ludde Date: Wed, 20 Jul 2005 09:49:04 +0000 Subject: [PATCH] (svn r2649) Get rid of 2 warnings. --- win32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/win32.c b/win32.c index 72a94b1586..09c9946718 100644 --- a/win32.c +++ b/win32.c @@ -2299,7 +2299,7 @@ void CSleep(int milliseconds) // Utility function to get the current timestamp in milliseconds // Useful for profiling -int64 GetTS() +int64 GetTS(void) { static double freq; __int64 value; @@ -2309,4 +2309,4 @@ int64 GetTS() } QueryPerformanceCounter((LARGE_INTEGER*)&value); return (__int64)(value * freq); -} \ No newline at end of file +}