summaryrefslogtreecommitdiff
path: root/sal/osl/w32/conditn.c
diff options
context:
space:
mode:
Diffstat (limited to 'sal/osl/w32/conditn.c')
-rw-r--r--sal/osl/w32/conditn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/osl/w32/conditn.c b/sal/osl/w32/conditn.c
index 9947929fd7e4..6f90e50672f0 100644
--- a/sal/osl/w32/conditn.c
+++ b/sal/osl/w32/conditn.c
@@ -35,10 +35,10 @@ oslCondition SAL_CALL osl_createCondition(void)
{
oslCondition Condition;
- Condition= (oslCondition)CreateEvent(0, /* no security */
+ Condition= (oslCondition)CreateEvent(NULL, /* no security */
sal_True, /* manual reset */
sal_False, /* initial state not signaled */
- 0); /* automatic name */
+ NULL); /* automatic name */
return Condition;