shell32/tests: Make sure a return value is used (LLVM/Clang).

This commit is contained in:
Austin English 2011-02-10 11:58:08 -08:00 committed by Alexandre Julliard
parent 8a3294e8b6
commit 3c69f657fb
1 changed files with 1 additions and 0 deletions

View File

@ -3477,6 +3477,7 @@ static void test_SHCreateShellItemArray(void)
{
UINT count_sia, i;
hr = IShellItemArray_GetCount(psia, &count_sia);
ok(hr == S_OK, "Got 0x%08x\n", hr);
ok(count_sia == count, "Counts differ (%d, %d)\n", count, count_sia);
for(i = 0; i < count_sia; i++)
{