summaryrefslogtreecommitdiff
path: root/Tests/Simple/simpleCLib.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Simple/simpleCLib.c')
-rw-r--r--Tests/Simple/simpleCLib.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/Tests/Simple/simpleCLib.c b/Tests/Simple/simpleCLib.c
index 88fc33efc2..65098656a9 100644
--- a/Tests/Simple/simpleCLib.c
+++ b/Tests/Simple/simpleCLib.c
@@ -4,9 +4,8 @@ int FooBar()
{
int class;
int private = 10;
- for ( class = 0; class < private; class ++ )
- {
+ for (class = 0; class < private; class ++) {
printf("Count: %d/%d\n", class, private);
- }
+ }
return 0;
}