diff options
Diffstat (limited to 'lib/libthr/thread/thr_umtx.c')
-rw-r--r-- | lib/libthr/thread/thr_umtx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libthr/thread/thr_umtx.c b/lib/libthr/thread/thr_umtx.c index 778ac80..7529c85 100644 --- a/lib/libthr/thread/thr_umtx.c +++ b/lib/libthr/thread/thr_umtx.c @@ -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); } |