mirror of
https://github.com/reactos/reactos.git
synced 2024-11-23 19:43:31 +08:00
[NTOS:KE:X64] Fix KiWriteSystemTime
This commit is contained in:
parent
7e6dce6aa1
commit
eda01e5be7
@ -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 New Issue
Block a user