mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
- Fix another multiplication error
svn path=/trunk/; revision=40553
This commit is contained in:
@@ -310,7 +310,7 @@ NdisWaitEvent(
|
||||
LARGE_INTEGER Timeout;
|
||||
NTSTATUS Status;
|
||||
|
||||
Timeout.QuadPart = MsToWait * -10000LL;
|
||||
Timeout.QuadPart = Int32x32To64(MsToWait, -10000);
|
||||
|
||||
Status = KeWaitForSingleObject(&Event->Event, Executive, KernelMode, TRUE, &Timeout);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user