aboutsummaryrefslogtreecommitdiff
path: root/type.c
diff options
context:
space:
mode:
Diffstat (limited to 'type.c')
-rw-r--r--type.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/type.c b/type.c
index 1c6888f..39f656f 100644
--- a/type.c
+++ b/type.c
@@ -61,7 +61,8 @@ mktype(enum typekind kind, enum typeprop prop)
t->kind = kind;
t->prop = prop;
t->value = NULL;
- t->incomplete = 0;
+ t->incomplete = false;
+ t->flexible = false;
return t;
}