mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 23:33:24 +08:00
[NTOS:KE:X64] Fix KiWriteSystemTime
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user