From a2e5b5071140c04e32496b900cac213a2763b9e2 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Sun, 25 Sep 2011 23:31:20 +0200 Subject: [PATCH] oleaut32/tests: Use FAILED instead of !SUCCEEDED. --- dlls/oleaut32/tests/tmarshal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/oleaut32/tests/tmarshal.c b/dlls/oleaut32/tests/tmarshal.c index c2fa3b41ac0..8161689f770 100644 --- a/dlls/oleaut32/tests/tmarshal.c +++ b/dlls/oleaut32/tests/tmarshal.c @@ -495,12 +495,12 @@ static HRESULT WINAPI Widget_VariantCArray( for (i = 0; i < count; i++) { VariantInit(&res); hr = VarAdd(&values[i], &inc, &res); - if (!SUCCEEDED(hr)) { + if (FAILED(hr)) { ok(0, "VarAdd failed at %u with error 0x%x\n", i, hr); return hr; } hr = VariantCopy(&values[i], &res); - if (!SUCCEEDED(hr)) { + if (FAILED(hr)) { ok(0, "VariantCopy failed at %u with error 0x%x\n", i, hr); return hr; }