kernel32: Set time between interrupts in GetSystemTimeAdjustment.

This commit is contained in:
Juan Lang 2009-09-30 13:09:31 -07:00 committed by Alexandre Julliard
parent fda70b97f4
commit 6614323807
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ BOOL WINAPI GetSystemTimeAdjustment( PDWORD lpTimeAdjustment, PDWORD lpTimeIncre
PBOOL lpTimeAdjustmentDisabled )
{
*lpTimeAdjustment = 0;
*lpTimeIncrement = 0;
*lpTimeIncrement = 10000000 / sysconf(_SC_CLK_TCK);
*lpTimeAdjustmentDisabled = TRUE;
return TRUE;
}