Module: wine Branch: master Commit: 16111fa63c2aa67488bcc5421b52b86cee32fcb9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=16111fa63c2aa67488bcc5421b...
Author: André Hentschel nerv@dawncrow.de Date: Tue Jan 28 00:09:34 2014 +0100
oleaut32/tests: Use boolean return values in boolean functions.
---
dlls/oleaut32/tests/tmarshal.c | 5 ++--- dlls/oleaut32/tests/vartest.c | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/dlls/oleaut32/tests/tmarshal.c b/dlls/oleaut32/tests/tmarshal.c index 5753871..f9d9db9 100644 --- a/dlls/oleaut32/tests/tmarshal.c +++ b/dlls/oleaut32/tests/tmarshal.c @@ -721,9 +721,8 @@ static BOOL mystruct_uint_ordered(MYSTRUCT *mystruct) int i; for (i = 0; i < sizeof(mystruct->uarr)/sizeof(mystruct->uarr[0]); i++) if (mystruct->uarr[i] != i) - return 0; - - return 1; + return FALSE; + return TRUE; }
static HRESULT WINAPI Widget_StructArgs( diff --git a/dlls/oleaut32/tests/vartest.c b/dlls/oleaut32/tests/vartest.c index bc8c4ba..9ca541f 100644 --- a/dlls/oleaut32/tests/vartest.c +++ b/dlls/oleaut32/tests/vartest.c @@ -290,7 +290,7 @@ static BOOL is_expected_variant( const VARIANT *result, const VARIANT *expected return !memcmp( &V_DECIMAL(result), &V_DECIMAL(expected), sizeof(DECIMAL) ); default: ok(0, "unhandled variant type %s\n",vtstr(V_VT(expected))); - return 0; + return FALSE; } }