oleaut32/tests: Fix indentation warning on GCC 6.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2016-08-15 09:58:02 +03:00 committed by Alexandre Julliard
parent fa846bdb27
commit 00c591a947
1 changed files with 2 additions and 2 deletions

View File

@ -708,7 +708,7 @@ static void test_safearray(void)
if (!pSafeArrayAllocDescriptorEx)
return;
for (i=0;i<sizeof(vttypes)/sizeof(vttypes[0]);i++) {
for (i = 0; i < sizeof(vttypes)/sizeof(vttypes[0]); i++) {
a = NULL;
hres = pSafeArrayAllocDescriptorEx(vttypes[i].vt,1,&a);
ok(hres == S_OK, "SafeArrayAllocDescriptorEx gave hres 0x%x\n", hres);
@ -762,7 +762,7 @@ static void test_safearray(void)
}
hres = SafeArrayDestroyDescriptor(a);
ok(hres == S_OK,"SADD failed with hres %x\n",hres);
}
}
}
static void test_SafeArrayAllocDestroyDescriptor(void)