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

This commit is contained in:
Austin English 2011-02-03 17:47:15 -08:00 committed by Alexandre Julliard
parent 855c5e848d
commit 4d6caaebbd
1 changed files with 2 additions and 1 deletions

View File

@ -616,6 +616,7 @@ static void test_CryptCATAdminAddRemoveCatalog(void)
/* Set the attributes so we can delete the file */
attrs = FILE_ATTRIBUTE_NORMAL;
ret = SetFileAttributesA(tmpfile, attrs);
ok(ret, "SetFileAttributesA failed %u\n", GetLastError());
DeleteFileA(tmpfile);
}
@ -784,7 +785,7 @@ static void test_create_catalog_file(void)
/* Only enumerate the members */
trace("Only members\n");
attrcount = membercount = 0;
membercount = 0;
catcdf = pCryptCATCDFOpen(cdffileW, NULL);
catmember = NULL;