diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-03-22 11:29:06 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-03-22 22:20:28 -0400 |
commit | f910931e73b4ae46c41e79756b44590e8c892c34 (patch) | |
tree | fa5e190a2b3147506269189bacd6398eaa762c11 /src/strlist.c | |
parent | 9c921f7cce985ec59420793b2f6388b980fcfe5d (diff) | |
download | stasis-f910931e73b4ae46c41e79756b44590e8c892c34.tar.gz |
Use GENERIC_ARRAY_FREE instead of split_free()
Diffstat (limited to 'src/strlist.c')
-rw-r--r-- | src/strlist.c | 2 |
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); } } |