From c2671133dd9505e28453ec9f7909698da0bee5a7 Mon Sep 17 00:00:00 2001 From: Austin English Date: Thu, 10 Feb 2011 13:28:24 -0800 Subject: [PATCH] shell32/tests: Make sure return values are used (LLVM/Clang). --- dlls/shell32/tests/shlfileop.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/shell32/tests/shlfileop.c b/dlls/shell32/tests/shlfileop.c index 810a745d1e2..b2d778ca173 100644 --- a/dlls/shell32/tests/shlfileop.c +++ b/dlls/shell32/tests/shlfileop.c @@ -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"); } -- 2.11.4.GIT