mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Fixed a typo.
This commit is contained in:
parent
56e0d38d0b
commit
21c1f460d7
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue