diff -r fe0d69d72bcd -r 35bcb3216c0d src/list.c --- a/src/list.c Thu May 23 20:29:28 2024 +0200 +++ b/src/list.c Thu May 23 20:31:37 2024 +0200 @@ -188,7 +188,7 @@ } void cxListStorePointers(CxList *list) { - list->base.item_size = sizeof(void *); + list->base.elem_size = sizeof(void *); list->base.store_pointer = true; list->climpl = list->cl; list->cl = &cx_pointer_list_class;