From 55293ae396eb3409113c0edf73c2f661d008f9d6 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Wed, 20 Aug 2025 22:19:14 +0100 Subject: vec -> ivec I'm going to implement a normal stable vector instead of an inline vector so we have both options for use. I think that's smarter than just sticking to one. --- sys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys.c') diff --git a/sys.c b/sys.c index d56c152..195b2a1 100644 --- a/sys.c +++ b/sys.c @@ -58,7 +58,7 @@ void sys_cleanup(sys_t *sys) case TAG_VEC: { lvec_t *lvec = as_vec(allocated); - vec_free(&lvec->data); + ivec_free(&lvec->data); free(lvec); break; } -- cgit v1.2.3-13-gbd6f