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:
parent
fa846bdb27
commit
00c591a947
|
@ -708,7 +708,7 @@ static void test_safearray(void)
|
||||||
if (!pSafeArrayAllocDescriptorEx)
|
if (!pSafeArrayAllocDescriptorEx)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (i=0;i<sizeof(vttypes)/sizeof(vttypes[0]);i++) {
|
for (i = 0; i < sizeof(vttypes)/sizeof(vttypes[0]); i++) {
|
||||||
a = NULL;
|
a = NULL;
|
||||||
hres = pSafeArrayAllocDescriptorEx(vttypes[i].vt,1,&a);
|
hres = pSafeArrayAllocDescriptorEx(vttypes[i].vt,1,&a);
|
||||||
ok(hres == S_OK, "SafeArrayAllocDescriptorEx gave hres 0x%x\n", hres);
|
ok(hres == S_OK, "SafeArrayAllocDescriptorEx gave hres 0x%x\n", hres);
|
||||||
|
@ -762,7 +762,7 @@ static void test_safearray(void)
|
||||||
}
|
}
|
||||||
hres = SafeArrayDestroyDescriptor(a);
|
hres = SafeArrayDestroyDescriptor(a);
|
||||||
ok(hres == S_OK,"SADD failed with hres %x\n",hres);
|
ok(hres == S_OK,"SADD failed with hres %x\n",hres);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void test_SafeArrayAllocDestroyDescriptor(void)
|
static void test_SafeArrayAllocDestroyDescriptor(void)
|
||||||
|
|
Loading…
Reference in New Issue