(svn r2649) Get rid of 2 warnings.
authorludde
Wed, 20 Jul 2005 09:49:04 +0000
changeset 2139 863a14d0c7a2
parent 2138 20c2cf0fb452
child 2140 d708eb80ab8b
(svn r2649) Get rid of 2 warnings.
win32.c
--- a/win32.c	Wed Jul 20 09:35:05 2005 +0000
+++ b/win32.c	Wed Jul 20 09:49:04 2005 +0000
@@ -2299,7 +2299,7 @@
 
 // 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 @@
 	}
 	QueryPerformanceCounter((LARGE_INTEGER*)&value);
 	return (__int64)(value * freq);
-}
\ No newline at end of file
+}