oleaut32/tests: Use boolean return values in boolean functions.

oldstable
André Hentschel 2014-01-28 00:09:34 +01:00 committed by Alexandre Julliard
parent a35b41acaa
commit 16111fa63c
2 changed files with 3 additions and 4 deletions

View File

@ -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(

View File

@ -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;
}
}