aboutsummaryrefslogtreecommitdiff
path: root/src/strlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/strlist.c')
-rw-r--r--src/strlist.c2
1 files changed, 1 insertions, 1 deletions
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);
}
}