aboutsummaryrefslogtreecommitdiff
path: root/pthreads/sem_post_multiple.c
diff options
context:
space:
mode:
Diffstat (limited to 'pthreads/sem_post_multiple.c')
-rw-r--r--pthreads/sem_post_multiple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pthreads/sem_post_multiple.c b/pthreads/sem_post_multiple.c
index 3d1e4ef28..44c168c6c 100644
--- a/pthreads/sem_post_multiple.c
+++ b/pthreads/sem_post_multiple.c
@@ -101,7 +101,7 @@ sem_post_multiple (sem_t * sem, int count)
s->value += count;
if (waiters > 0)
{
-#ifdef NEED_SEM
+#if defined(NEED_SEM)
if (SetEvent(s->sem))
{
waiters--;