shell32/tests: Make sure return values are used (LLVM/Clang).

This commit is contained in:
Austin English 2011-02-10 13:28:24 -08:00 committed by Alexandre Julliard
parent df846e89eb
commit c2671133dd
1 changed files with 1 additions and 0 deletions

View File

@ -2058,6 +2058,7 @@ static void test_sh_create_dir(void)
ok(ERROR_ALREADY_EXISTS == ret, "SHCreateDirectoryEx should fail to create existing directory, ret = %d\n", ret);
ret = pSHCreateDirectoryExA(NULL, "c:\\testdir3", NULL);
ok(ERROR_SUCCESS == ret, "SHCreateDirectoryEx failed to create directory, ret = %d\n", ret);
ok(file_exists("c:\\testdir3"), "The directory is not created\n");
}