Change pointers for heap allocation
[muddle-interpreter.git] / src / print.c
index 9cadda721e44624df77c33f868df69dfe977b379..8f089a3fbd3126615addcf43d9249b5a4065293d 100644 (file)
@@ -27,7 +27,7 @@ License along with this file. If not, see
 static void
 print_vector_body (const vector_object * o)
 {
-  const object *p = OBJECT_OF_HEAP_PTR (o->body);
+  const object *p = HEAP_OBJECT (o->body);
   if (!p)
     return;
   if (o->len)