- Fix another multiplication error

svn path=/trunk/; revision=40553
This commit is contained in:
Cameron Gutman
2009-04-17 01:50:29 +00:00
parent ff3c42108d
commit 0f8d58977d
+1 -1
View File
@@ -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);