From f910931e73b4ae46c41e79756b44590e8c892c34 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 22 Mar 2024 11:29:06 -0400 Subject: Use GENERIC_ARRAY_FREE instead of split_free() --- src/strlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/strlist.c') diff --git a/src/strlist.c b/src/strlist.c index 5832802..9e9bafb 100644 --- a/src/strlist.c +++ b/src/strlist.c @@ -167,7 +167,7 @@ void strlist_append_strlist(struct StrList *pStrList1, struct StrList *pStrList2 for (size_t i = 0; token[i] != NULL; i++) { strlist_append(pStrList, token[i]); } - split_free(token); + GENERIC_ARRAY_FREE(token); } } -- cgit