summaryrefslogtreecommitdiffstats
path: root/Tests/CTestTest/SmallAndFast/echoargs.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CTestTest/SmallAndFast/echoargs.c')
-rw-r--r--Tests/CTestTest/SmallAndFast/echoargs.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Tests/CTestTest/SmallAndFast/echoargs.c b/Tests/CTestTest/SmallAndFast/echoargs.c
index 6e17464..19063b4 100644
--- a/Tests/CTestTest/SmallAndFast/echoargs.c
+++ b/Tests/CTestTest/SmallAndFast/echoargs.c
@@ -3,8 +3,7 @@
int main(int argc, const char* argv[])
{
int i = 0;
- for (; i<argc; ++i)
- {
+ for (; i < argc; ++i) {
fprintf(stdout, "%s\n", argv[i]);
}
return 0;