summaryrefslogtreecommitdiff
path: root/sem_post_multiple.c
diff options
context:
space:
mode:
authorrpj <rpj>2011-05-30 00:30:56 +0000
committerrpj <rpj>2011-05-30 00:30:56 +0000
commit26ed1ebeb95caec8d733a6a91e71e31312a8eb06 (patch)
treea957bdd3826088a9e447fc830ac4ccf835b77c44 /sem_post_multiple.c
parent2fe8aba6a8a4ce09f353f34881c77f93a9c01ca3 (diff)
Compiler directive cleanups
Diffstat (limited to 'sem_post_multiple.c')
-rw-r--r--sem_post_multiple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sem_post_multiple.c b/sem_post_multiple.c
index 3d1e4ef..44c168c 100644
--- a/sem_post_multiple.c
+++ b/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--;