[PATCH] oleaut32/tests: Fix indentation warning on GCC 6

Nikolay Sivov nsivov at codeweavers.com
Mon Aug 15 01:58:02 CDT 2016


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---
 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)
-- 
2.8.1




More information about the wine-patches mailing list