From: poljar (Damir Jelić) Date: Thu, 27 Jun 2013 23:09:24 +0000 (+0200) Subject: Revert windows BOOL variables to use TRUE/FALSE instead of true/false X-Git-Tag: accepted/tizen/20131022.162753~233 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=24a0639a211993288488fb4952cabb68b0691f08;p=platform%2Fupstream%2Fpulseaudio.git Revert windows BOOL variables to use TRUE/FALSE instead of true/false --- diff --git a/src/pulsecore/mutex-win32.c b/src/pulsecore/mutex-win32.c index 978101c..01e8b4a 100644 --- a/src/pulsecore/mutex-win32.c +++ b/src/pulsecore/mutex-win32.c @@ -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);