Module: wine Branch: master Commit: 4b94239a3b6df4af6529afcb223b38c617eb8d29 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4b94239a3b6df4af6529afcb22...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Fri Oct 25 00:19:08 2013 +0200
quartz/tests: Use BOOL type where appropriate.
---
dlls/quartz/tests/avisplitter.c | 2 +- dlls/quartz/tests/dsoundrender.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/quartz/tests/avisplitter.c b/dlls/quartz/tests/avisplitter.c index ad01906..f9da610 100644 --- a/dlls/quartz/tests/avisplitter.c +++ b/dlls/quartz/tests/avisplitter.c @@ -57,7 +57,7 @@ static int count_threads(void) return threads; }
-static int create_avisplitter(void) +static BOOL create_avisplitter(void) { HRESULT hr;
diff --git a/dlls/quartz/tests/dsoundrender.c b/dlls/quartz/tests/dsoundrender.c index a3e4778..745a32f 100644 --- a/dlls/quartz/tests/dsoundrender.c +++ b/dlls/quartz/tests/dsoundrender.c @@ -39,7 +39,7 @@
static IUnknown *pDSRender = NULL;
-static int create_dsound_renderer(void) +static BOOL create_dsound_renderer(void) { HRESULT hr;