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/wheel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/wheel.c') diff --git a/src/wheel.c b/src/wheel.c index a4ddbff..8f48828 100644 --- a/src/wheel.c +++ b/src/wheel.c @@ -66,7 +66,7 @@ struct Wheel *get_wheel_file(const char *basepath, const char *name, char *to_ma result->abi_tag = strdup(parts[4]); result->platform_tag = strdup(parts[5]); } - split_free(parts); + GENERIC_ARRAY_FREE(parts); break; } closedir(dp); -- cgit