summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2013-05-18 14:19:01 +0000
committerAdrian Thurston <thurston@complang.org>2013-05-18 14:19:01 +0000
commit06bf2e1c96b9c2bc23cae7f1202f420afc16e026 (patch)
tree6a52115c7c6ad2c9358674cefa81328d2fd45b0b
parent0381aa5bd1808f9c5950adccf96aa78c528874d3 (diff)
downloadcolm-06bf2e1c96b9c2bc23cae7f1202f420afc16e026.tar.gz
make treeToStr function static
-rw-r--r--colm/bytecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/colm/bytecode.c b/colm/bytecode.c
index b06bdd24..28f3341a 100644
--- a/colm/bytecode.c
+++ b/colm/bytecode.c
@@ -141,7 +141,7 @@ void parserSetContext( Program *prg, Tree **sp, Parser *parser, Tree *val )
parser->pdaRun->context = splitTree( prg, val );
}
-Head *treeToStr( Program *prg, Tree **sp, Tree *tree, int trim )
+static Head *treeToStr( Program *prg, Tree **sp, Tree *tree, int trim )
{
/* Collect the tree data. */
StrCollect collect;