aboutsummaryrefslogtreecommitdiff
path: root/tests/tests2/31_args.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tests2/31_args.c')
-rw-r--r--tests/tests2/31_args.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tests2/31_args.c b/tests/tests2/31_args.c
index 275f8cf..dcafed5 100644
--- a/tests/tests2/31_args.c
+++ b/tests/tests2/31_args.c
@@ -5,7 +5,7 @@ int main(int argc, char **argv)
int Count;
printf("hello world %d\n", argc);
- for (Count = 0; Count < argc; Count++)
+ for (Count = 1; Count < argc; Count++)
printf("arg %d: %s\n", Count, argv[Count]);
return 0;