Module: wine Branch: master Commit: a2e5b5071140c04e32496b900cac213a2763b9e2 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a2e5b5071140c04e32496b900c...
Author: Michael Stefaniuc mstefani@redhat.de Date: Sun Sep 25 23:31:20 2011 +0200
oleaut32/tests: Use FAILED instead of !SUCCEEDED.
---
dlls/oleaut32/tests/tmarshal.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/oleaut32/tests/tmarshal.c b/dlls/oleaut32/tests/tmarshal.c index c2fa3b4..8161689 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; }