1
0
Fork 0
mirror of https://github.com/anrieff/libcpuid synced 2025-01-23 20:06:41 +00:00

Fixed a forgotten debugging option in cpu_clock()

git-svn-id: https://svn.code.sf.net/p/libcpuid/code/HEAD/libcpuid@31 3b4be424-7ac5-41d7-8526-f4ddcb85d872
This commit is contained in:
Veselin Georgiev 2008-11-21 19:07:55 +00:00
parent 2fb7b0522b
commit 373fc03beb

View file

@ -195,6 +195,6 @@ int cpu_clock(void)
int result;
result = cpu_clock_by_os();
if (result <= 0)
result = cpu_clock_measure(200, 0);
result = cpu_clock_measure(200, 1);
return result;
}