summaryrefslogtreecommitdiffstats
path: root/struct.c
diff options
context:
space:
mode:
Diffstat (limited to 'struct.c')
-rw-r--r--struct.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/struct.c b/struct.c
index 94f53b6b..41773692 100644
--- a/struct.c
+++ b/struct.c
@@ -224,7 +224,8 @@ static struct struct_type *stype_handle(val *pobj, val ctx)
if (!stype)
no_such_struct(ctx, obj);
*pobj = stype;
- return coerce(struct struct_type *, cobj_handle(stype, struct_type_s));
+ return coerce(struct struct_type *, cobj_handle(ctx, stype,
+ struct_type_s));
}
case COBJ:
if (obj->co.cls == struct_type_s)
@@ -265,7 +266,7 @@ val make_struct_type(val name, val super,
no_such_struct(self, super);
super = supertype;
} else if (super) {
- class_check(super, struct_type_s);
+ class_check(self, super, struct_type_s);
}
if (!bindable(name)) {