From 883c4fd47e0ae05b0c093bfe6cf3c4b07934dcb5 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Tue, 24 Mar 2015 09:59:30 +0100 Subject: [PATCH] shlwapi-UrlCombine: Use FAILED instead of !SUCCEEDED. --- ...shlwapi-tests-Add-additional-tests-for-UrlCombine-and-.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/shlwapi-UrlCombine/0001-shlwapi-tests-Add-additional-tests-for-UrlCombine-and-.patch b/patches/shlwapi-UrlCombine/0001-shlwapi-tests-Add-additional-tests-for-UrlCombine-and-.patch index 4c4b82e1..96554337 100644 --- a/patches/shlwapi-UrlCombine/0001-shlwapi-tests-Add-additional-tests-for-UrlCombine-and-.patch +++ b/patches/shlwapi-UrlCombine/0001-shlwapi-tests-Add-additional-tests-for-UrlCombine-and-.patch @@ -82,7 +82,7 @@ index f53a545..ecbdfab 100644 + + if (todo) + { -+ todo_wine ok(dwSize == dwExpectLen && (!SUCCEEDED(hr) || strcmp(szReturnUrl, szExpectUrl)==0), ++ todo_wine ok(dwSize == dwExpectLen && (FAILED(hr) || strcmp(szReturnUrl, szExpectUrl)==0), + "Expected %s (len=%d), but got %s (len=%d)\n", szExpectUrl, dwExpectLen, SUCCEEDED(hr) ? szReturnUrl : "(null)", dwSize); + } + else