diff options
Diffstat (limited to 'pthreads/sem_post.c')
-rw-r--r-- | pthreads/sem_post.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pthreads/sem_post.c b/pthreads/sem_post.c index c7a7a3cf9..34832527b 100644 --- a/pthreads/sem_post.c +++ b/pthreads/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)) { |