mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-09-13 09:17:20 -07:00
shlwapi-UrlCombine: Use FAILED instead of !SUCCEEDED.
This commit is contained in:
parent
d7d3868b7f
commit
883c4fd47e
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user