Revert windows BOOL variables to use TRUE/FALSE instead of true/false

This commit is contained in:
poljar (Damir Jelić) 2013-06-28 01:09:24 +02:00 committed by Tanu Kaskinen
parent b358aea89b
commit 24a0639a21

View 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);