summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Feblot <devnull@localhost>2015-04-25 17:41:47 +0200
committerAlexandre Feblot <devnull@localhost>2015-04-25 17:41:47 +0200
commitb70806987a764f2c33ada3e6b481a107ecc60bfa (patch)
treebbc6add0cd259093cdb85db93de8edc45dc5523c
parent8861bdeda319b19eb7890603c32e66ca86069266 (diff)
downloadscons-b70806987a764f2c33ada3e6b481a107ecc60bfa.tar.gz
Fix C typo error in a test
-rw-r--r--test/option/tree-lib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/option/tree-lib.py b/test/option/tree-lib.py
index 27213449..2dc5fb06 100644
--- a/test/option/tree-lib.py
+++ b/test/option/tree-lib.py
@@ -52,7 +52,7 @@ test.write('main.c', """\
#include <stdlib.h>
#include <stdio.h>
int
-main(int argc, char *argv)
+main(int argc, char **argv)
{
printf("#define FOO_H \\"foo.h\\"\\n");
return (0);