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/wheel.c | |
parent | 9c921f7cce985ec59420793b2f6388b980fcfe5d (diff) | |
download | stasis-f910931e73b4ae46c41e79756b44590e8c892c34.tar.gz |
Use GENERIC_ARRAY_FREE instead of split_free()
Diffstat (limited to 'src/wheel.c')
-rw-r--r-- | src/wheel.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |