summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAlexandre Feblot <devnull@localhost>2015-04-25 15:41:47 (GMT)
committerAlexandre Feblot <devnull@localhost>2015-04-25 15:41:47 (GMT)
commitac9335aac3ad4c320257a865711a4dfeaa23866c (patch)
treebbc6add0cd259093cdb85db93de8edc45dc5523c /test
parent08eae186d3237d214b5db70af9e54360002701e4 (diff)
downloadSCons-ac9335aac3ad4c320257a865711a4dfeaa23866c.zip
SCons-ac9335aac3ad4c320257a865711a4dfeaa23866c.tar.gz
SCons-ac9335aac3ad4c320257a865711a4dfeaa23866c.tar.bz2
Fix C typo error in a test
Diffstat (limited to '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 2721344..2dc5fb0 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);