summaryrefslogtreecommitdiff
path: root/win32.c
diff options
context:
space:
mode:
authorludde <ludde@openttd.org>2005-07-20 09:49:04 +0000
committerludde <ludde@openttd.org>2005-07-20 09:49:04 +0000
commitf432314fa907d4f3ee63537d399bad64a35033bd (patch)
treebe35189ae7526c106cef2de97511687f5d09b659 /win32.c
parent951cde5b72de9c4eae48b68ad363df18bbae69c1 (diff)
downloadopenttd-f432314fa907d4f3ee63537d399bad64a35033bd.tar.xz
(svn r2649) Get rid of 2 warnings.
Diffstat (limited to 'win32.c')
-rw-r--r--win32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32.c b/win32.c
index 72a94b158..09c994671 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
+}