summaryrefslogtreecommitdiff
path: root/condvar.c
diff options
context:
space:
mode:
authorbje <bje>1998-10-29 21:40:46 +0000
committerbje <bje>1998-10-29 21:40:46 +0000
commit47d04bda4e14c8aef0c3fa7e8ae64e690b25fb66 (patch)
tree67dfd866a5bc7c16548e5029401c3b4387dfa43a /condvar.c
parente0b68aae21da8697ef0f4f3924ea29edb0e89582 (diff)
1998-10-30 Ben Elliston <bje@cygnus.com>
* condvar.c (cond_wait): Fix semantic error. Test for equality instead of making an assignment.
Diffstat (limited to 'condvar.c')
-rw-r--r--condvar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/condvar.c b/condvar.c
index 2b78b55..3dc76d4 100644
--- a/condvar.c
+++ b/condvar.c
@@ -107,7 +107,7 @@ cond_wait(pthread_cond_t *cv, pthread_mutex_t *mutex, DWORD abstime)
pthread_mutex_unlock (&cv->waiters_count_lock);
/* Some thread called pthread_cond_broadcast(). */
- if ((result = WAIT_OBJECT_0 + BROADCAST) && last_waiter)
+ if ((result == WAIT_OBJECT_0 + BROADCAST) && last_waiter)
{
/* We're the last waiter to be notified, so reset the manual
event. */