oleaut32/tests: Fix a test output

André Hentschel nerv at dawncrow.de
Thu Jan 16 13:49:53 CST 2014


---
 dlls/oleaut32/tests/safearray.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/oleaut32/tests/safearray.c b/dlls/oleaut32/tests/safearray.c
index bb346f6..8a98782 100644
--- a/dlls/oleaut32/tests/safearray.c
+++ b/dlls/oleaut32/tests/safearray.c
@@ -1778,8 +1778,8 @@ static void test_SafeArrayCopy(void)
   /* copy from a vector */
   sa = SafeArrayCreateVector(VT_UI1, 0, 2);
   ok(sa->fFeatures == (FADF_HAVEVARTYPE|FADF_CREATEVECTOR) ||
-     broken(!sa->fFeatures /* W2k */),
-     "got 0x%08x\n", hres);
+     broken(sa->fFeatures == FADF_CREATEVECTOR /* W2k */),
+     "got 0x%08x\n", sa->fFeatures);
   hres = SafeArrayCopy(sa, &sa2);
   ok(hres == S_OK, "got 0x%08x\n", hres);
   ok(sa2->fFeatures == FADF_HAVEVARTYPE ||
-- 
1.8.1.2




More information about the wine-patches mailing list