diff options
Diffstat (limited to 'val.c')
-rw-r--r-- | val.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ static ObjString *objstring_create(State *S, char *src, size_t len, uint32_t has ObjFunc *objfunc_new(State *S) { ObjFunc *o = NEW_OBJ(S, ObjFunc, OTY_FUNC); - o->chunk = chunk_new(S); + o->ch = chunk_new(S); return o; } |