Fix typo, I was using a wrong header file, and the typo is not detected

by compiler.
This commit is contained in:
David Xu 2006-12-04 14:27:42 +00:00
parent 2bd2c90703
commit 3c61d00ab6

View File

@ -115,7 +115,7 @@ _thr_ucond_wait(struct ucond *cv, struct umutex *m,
return (ETIMEDOUT);
}
if (_umtx_op(cv, UMTX_OP_CV_WAIT,
check_unparking ? UMTX_CHECK_UNPAKING : 0,
check_unparking ? UMTX_CHECK_UNPARKING : 0,
m, __DECONST(void*, timeout)) == 0) {
return (0);
}