aboutsummaryrefslogtreecommitdiff
path: root/sys.c
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2025-08-20 22:19:14 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2025-08-20 22:19:14 +0100
commit55293ae396eb3409113c0edf73c2f661d008f9d6 (patch)
tree8c81e06049524da2849647082016a0ea8363d502 /sys.c
parentdf558da7e1979a59b5207c323962aa59b61258e4 (diff)
downloadalisp-55293ae396eb3409113c0edf73c2f661d008f9d6.tar.gz
alisp-55293ae396eb3409113c0edf73c2f661d008f9d6.tar.bz2
alisp-55293ae396eb3409113c0edf73c2f661d008f9d6.zip
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.
Diffstat (limited to 'sys.c')
-rw-r--r--sys.c2
1 files changed, 1 insertions, 1 deletions
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;
}