summaryrefslogtreecommitdiff
path: root/sem_post.c
diff options
context:
space:
mode:
Diffstat (limited to 'sem_post.c')
-rw-r--r--sem_post.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sem_post.c b/sem_post.c
index c7a7a3c..3483252 100644
--- a/sem_post.c
+++ b/sem_post.c
@@ -93,7 +93,7 @@ sem_post (sem_t * sem)
if (s->value < SEM_VALUE_MAX)
{
-#ifdef NEED_SEM
+#if defined(NEED_SEM)
if (++s->value <= 0
&& !SetEvent(s->sem))
{