mirror of
https://github.com/reactos/reactos.git
synced 2025-05-17 16:27:00 +00:00
[NTOSKRNL] Fix ClockDiff aka fix MSVC build
This commit is contained in:
parent
bbfb3caa36
commit
c2b6c3a69f
1 changed files with 1 additions and 1 deletions
|
@ -261,7 +261,7 @@ ExpAllocateUuids(PULARGE_INTEGER Time,
|
|||
else
|
||||
{
|
||||
*Range = TIME_FRAME;
|
||||
ClockDiff.QuadPart -= TIME_FRAME;
|
||||
ClockDiff.QuadPart = TimeDiff.QuadPart - TIME_FRAME;
|
||||
--ClockDiff.HighPart;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue