git » libfiu » commit 5c424a8

preload/posix: Fix indentation

author Alberto Bertogli
2009-08-07 15:47:09 UTC
committer Alberto Bertogli
2009-08-07 15:47:09 UTC
parent 389fc18c01894317d01b9422be5c2e6d9b98b28f

preload/posix: Fix indentation

Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>

preload/posix/codegen.h +5 -4

diff --git a/preload/posix/codegen.h b/preload/posix/codegen.h
index 30541fa..5dddf35 100644
--- a/preload/posix/codegen.h
+++ b/preload/posix/codegen.h
@@ -136,10 +136,11 @@ extern int __thread _fiu_called;
  * amount when the given point of failure is enabled. Can be combined with the
  * other body generators. */
 #define mkwrap_body_reduce(FIU_NAME, CNT)			\
-	fstatus = fiu_fail(FIU_NAME);				\
-	if (fstatus != 0) {					\
-		CNT -= random() % CNT;				\
-	}
+								\
+		fstatus = fiu_fail(FIU_NAME);			\
+		if (fstatus != 0) {				\
+			CNT -= random() % CNT;			\
+		}
 
 #define mkwrap_bottom(NAME, PARAMSN)				\
 								\