summaryrefslogtreecommitdiffstats
path: root/Tests/TestDriver/test2.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/TestDriver/test2.cxx')
-rw-r--r--Tests/TestDriver/test2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/TestDriver/test2.cxx b/Tests/TestDriver/test2.cxx
index 69f0fff..08d1e6f 100644
--- a/Tests/TestDriver/test2.cxx
+++ b/Tests/TestDriver/test2.cxx
@@ -1,8 +1,8 @@
#include <stdio.h>
-int test2(int ac, char*av[])
+int test2(int ac, char* av[])
{
printf("test2\n");
- for(int i =0; i < ac; i++)
+ for (int i = 0; i < ac; i++)
printf("arg %d is %s\n", ac, av[i]);
return 0;
}