summaryrefslogtreecommitdiff
path: root/src/core/token.c
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-11-04 23:24:42 +0000
committerPaul Buetow <paul@buetow.org>2008-11-04 23:24:42 +0000
commitd2713783c48ca9fbdd6f4ea3aab03fe856fdd52a (patch)
tree3d78a409ab9949319285d26403dd6b9d8bf2067f /src/core/token.c
parentf0b2170a9c769425082604c9e9252ba422902f3e (diff)
big step forward for arrays in fype.
Diffstat (limited to 'src/core/token.c')
-rw-r--r--src/core/token.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/token.c b/src/core/token.c
index 6a9d966..3a2e413 100644
--- a/src/core/token.c
+++ b/src/core/token.c
@@ -398,7 +398,8 @@ token_print_val(Token *p_token) {
printf("(%s, %s)", tt_get_name(tt), token_get_val(p_token));
break;
case TT_ARRAY:
- printf("(%s, size:%d)", tt_get_name(tt), array_get_size(p_token->p_array));
+ printf("(%s, size:%d)", tt_get_name(tt),
+ array_get_size(p_token->p_array));
break;
default:
ERROR("Ouups(%s)!", tt_get_name(tt));