mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[NTOS:KE:X64] Fix KiWriteSystemTime
This commit is contained in:
parent
7e6dce6aa1
commit
eda01e5be7
1 changed files with 1 additions and 1 deletions
|
@ -31,8 +31,8 @@ KiWriteSystemTime(volatile KSYSTEM_TIME *SystemTime, ULARGE_INTEGER NewTime)
|
|||
/* Update in 3 steps, so that a reader can recognize partial updates */
|
||||
SystemTime->High1Time = NewTime.HighPart;
|
||||
SystemTime->LowPart = NewTime.LowPart;
|
||||
SystemTime->High2Time = NewTime.HighPart;
|
||||
#endif
|
||||
SystemTime->High2Time = NewTime.HighPart;
|
||||
}
|
||||
|
||||
FORCEINLINE
|
||||
|
|
Loading…
Reference in a new issue