summaryrefslogtreecommitdiff
path: root/sem_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'sem_init.c')
-rw-r--r--sem_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sem_init.c b/sem_init.c
index 5dcb88e..4841530 100644
--- a/sem_init.c
+++ b/sem_init.c
@@ -114,8 +114,8 @@ sem_init (sem_t * sem, int pshared, unsigned int value)
{
s->value = value;
s->event = CreateEvent (NULL,
- FALSE, /* manual reset */
- FALSE, /* initial state */
+ PTW32_FALSE, /* manual reset */
+ PTW32_FALSE, /* initial state */
NULL);
if (0 == s->event)