diff options
Diffstat (limited to 'tests/condvar7.c')
-rw-r--r-- | tests/condvar7.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/condvar7.c b/tests/condvar7.c index 3745f02..23e2441 100644 --- a/tests/condvar7.c +++ b/tests/condvar7.c @@ -95,7 +95,7 @@ mythread(void * arg) pthread_cleanup_push(pthread_mutex_unlock, (void *) &cvthing.lock); - while (! cvthing.shared > 0) + while (! (cvthing.shared > 0)) assert(pthread_cond_timedwait(&cvthing.notbusy, &cvthing.lock, &abstime) == 0); pthread_cleanup_pop(0); |