aboutsummaryrefslogtreecommitdiffstats
path: root/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'array.c')
-rw-r--r--array.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/array.c b/array.c
index 60d18624..29c09753 100644
--- a/array.c
+++ b/array.c
@@ -111,7 +111,8 @@ null_array(NODE *symbol)
symbol->type = Node_var_array;
symbol->array_funcs = & null_array_func;
symbol->buckets = NULL;
- symbol->table_size = symbol->array_size = 0;
+ symbol->table_size = 0;
+ symbol->array_size = 0;
symbol->array_capacity = 0;
symbol->flags = 0;