oleaut32: Fix indentation in test_safearray.

Gerald Pfeifer gerald at pfeifer.com
Thu Jun 25 05:22:43 CDT 2015


GCC 6 is going to detect cases like this.  So far I did not
encounter a real bug in the Wine codebase, but still...

Gerald
---
 dlls/oleaut32/tests/safearray.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/oleaut32/tests/safearray.c b/dlls/oleaut32/tests/safearray.c
index 2a62977..dd9329a 100644
--- a/dlls/oleaut32/tests/safearray.c
+++ b/dlls/oleaut32/tests/safearray.c
@@ -709,7 +709,7 @@ static void test_safearray(void)
         return;
 
 	for (i=0;i<sizeof(vttypes)/sizeof(vttypes[0]);i++) {
-        a = NULL;
+		a = NULL;
 		hres = pSafeArrayAllocDescriptorEx(vttypes[i].vt,1,&a);
 		ok(hres == S_OK, "SafeArrayAllocDescriptorEx gave hres 0x%x\n", hres);
 		ok(a->fFeatures == vttypes[i].expflags,"SAADE(%d) resulted with flags %x, expected %x\n", vttypes[i].vt, a->fFeatures, vttypes[i].expflags);
-- 
2.4.2



More information about the wine-patches mailing list