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

oldstable
Austin English 2011-02-10 13:28:17 -08:00 committed by Alexandre Julliard
parent 75f8de0d4f
commit d6cd0e999e
1 changed files with 1 additions and 1 deletions

View File

@ -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.