Fix some C++ syntax that I accidentally introduced into C code.

This commit is contained in:
Peter 2013-06-25 17:17:58 +00:00
parent 369871df3f
commit aa99ef3e43

View File

@ -807,7 +807,7 @@ get_itimer()
return ret;
#elif defined(_WIN32)
LARGE_INTEGER count;
if (::QueryPerformanceCounter(&count))
if (QueryPerformanceCounter(&count))
return count.LowPart;
else
return 0;