Commit d6cd0e99 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

shell32/tests: Don't check return values inside of if(0) (LLVM/Clang).

parent 75f8de0d
......@@ -358,7 +358,7 @@ static void test_parameters(void)
BOOL ret;
if (0)
ret = pSHGetSpecialFolderPathA(NULL, NULL, CSIDL_BITBUCKET, FALSE);
pSHGetSpecialFolderPathA(NULL, NULL, CSIDL_BITBUCKET, FALSE);
/* odd but true: calling with a NULL path still succeeds if it's a real
* dir (on some windows platform). on winME it generates exception.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment