oleaut32/tests: Use boolean return values in boolean functions

André Hentschel nerv at dawncrow.de
Mon Jan 27 17:09:34 CST 2014


---
 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 1a3effe..2005140 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;
     }
 }
 
-- 
1.8.1.2





More information about the wine-patches mailing list