]> code.delx.au - pulseaudio/commitdiff
Revert windows BOOL variables to use TRUE/FALSE instead of true/false
authorpoljar (Damir Jelić) <poljarinho@gmail.com>
Thu, 27 Jun 2013 23:09:24 +0000 (01:09 +0200)
committerTanu Kaskinen <tanu.kaskinen@linux.intel.com>
Thu, 4 Jul 2013 09:25:56 +0000 (12:25 +0300)
src/pulsecore/mutex-win32.c

index 978101cafdb667b09e9f1294671e27cd868d4d78..01e8b4ace1f67bc5ca4d7c6dc170056ae6a917ef 100644 (file)
@@ -114,7 +114,7 @@ int pa_cond_wait(pa_cond *c, pa_mutex *m) {
     assert(c);
     assert(m);
 
-    event = CreateEvent(NULL, false, false, NULL);
+    event = CreateEvent(NULL, FALSE, FALSE, NULL);
     assert(event);
 
     pa_hashmap_put(c->wait_events, event, event);