Module: wine Branch: master Commit: 00c591a947919cf67a01c86d2d5da4ee32c46dcc URL: http://source.winehq.org/git/wine.git/?a=commit;h=00c591a947919cf67a01c86d2d...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Mon Aug 15 09:58:02 2016 +0300
oleaut32/tests: Fix indentation warning on GCC 6.
Signed-off-by: Nikolay Sivov nsivov@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/oleaut32/tests/safearray.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/oleaut32/tests/safearray.c b/dlls/oleaut32/tests/safearray.c index f57b886..651a0c3 100644 --- a/dlls/oleaut32/tests/safearray.c +++ b/dlls/oleaut32/tests/safearray.c @@ -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)