X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=src%2Fobject.c;h=ff65f41651060c96e103a875cc06d96c1d6f53e3;hb=58a5ffdfec139a0c9d399f603b77a764ae8607f7;hp=a2a81a62e478134ddd188ec4188c0fbe9a2c869d;hpb=8d55156675587a770c5654362bcbd3d2a98e4aa9;p=muddle-interpreter.git diff --git a/src/object.c b/src/object.c index a2a81a6..ff65f41 100644 --- a/src/object.c +++ b/src/object.c @@ -21,7 +21,7 @@ License along with this file. If not, see uint32_t list_length (const list_object * o) { - const pool_object *p = POOL_OBJECT (o->head); + const pool_object *p = POOL_OBJECT (o->val.head); uint32_t n = 0; while (p) {