Commit e390b8b9 authored by unknown's avatar unknown

Fixed a typo.

parent c37232dc
...@@ -108,8 +108,8 @@ ulonglong my_micro_time() ...@@ -108,8 +108,8 @@ ulonglong my_micro_time()
if (query_performance_frequency) if (query_performance_frequency)
{ {
QueryPerformanceCounter((LARGE_INTEGER*) &newtime); QueryPerformanceCounter((LARGE_INTEGER*) &newtime);
return ((new_time / query_performance_frequency * 10000000) + return ((newtime / query_performance_frequency * 10000000) +
(new_time % query_performance_frequency * 10000000 / (newtime % query_performance_frequency * 10000000 /
query_performance_frequency)); query_performance_frequency));
} }
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment