summaryrefslogtreecommitdiffstats
path: root/Tests/TestDriver/subdir/test3.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/TestDriver/subdir/test3.cxx')
-rw-r--r--Tests/TestDriver/subdir/test3.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/TestDriver/subdir/test3.cxx b/Tests/TestDriver/subdir/test3.cxx
index 976d6eb..c5a83de 100644
--- a/Tests/TestDriver/subdir/test3.cxx
+++ b/Tests/TestDriver/subdir/test3.cxx
@@ -1,8 +1,8 @@
#include <stdio.h>
-int subdir_test3(int ac, char*av[])
+int subdir_test3(int ac, char* av[])
{
printf("test3\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;
}