From 757aaecc83d2d344adfc77d169514f6a017a7e1e Mon Sep 17 00:00:00 2001 From: Austin English Date: Wed, 9 Feb 2011 13:44:37 -0800 Subject: [PATCH] shlwapi/tests: Don't check return values inside of if(0) (LLVM/Clang). --- dlls/shlwapi/tests/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shlwapi/tests/thread.c b/dlls/shlwapi/tests/thread.c index cee87e7fe37..d4a17872361 100644 --- a/dlls/shlwapi/tests/thread.c +++ b/dlls/shlwapi/tests/thread.c @@ -191,7 +191,7 @@ static void test_SHGetThreadRef(void) if (0) { /* this crash on Windows */ - hr = pSHGetThreadRef(NULL); + pSHGetThreadRef(NULL); } }