Correct instance of *timeout that should have been timeout.

Noticed by: mlaier
This commit is contained in:
Bill Paul 2004-02-11 23:11:12 +00:00
parent ea81a634b5
commit c7a61a03e8

View File

@ -655,7 +655,7 @@ ntoskrnl_waitforobjs(cnt, obj, wtype, reason, mode,
if (error || wtype == WAITTYPE_ANY)
break;
if (*timeout != NULL) {
if (timeout != NULL) {
tv.tv_sec -= (t2.tv_sec - t1.tv_sec);
tv.tv_usec -= (t2.tv_nsec - t1.tv_nsec) / 1000;
}