From fc476199681664f4498babba674c209147fc041c Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sun, 28 May 2023 18:10:25 -0700 Subject: *: use NULL for free() in til_setup_new() Commit 7c8086020 switched the til_setup_new() api to support NULL free_func for free(). This mechanical change pivots to that instead of the awkwardly cast free() parameters. --- src/modules/rtv/rtv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/rtv') diff --git a/src/modules/rtv/rtv.c b/src/modules/rtv/rtv.c index a0f8047..29d1e71 100644 --- a/src/modules/rtv/rtv.c +++ b/src/modules/rtv/rtv.c @@ -492,7 +492,7 @@ static int rtv_setup(const til_settings_t *settings, til_setting_t **res_setting rtv_setup_t *setup; /* FIXME: rtv_setup_t.snow_module needs freeing, so we need a bespoke free_func */ - setup = til_setup_new(sizeof(*setup) + sizeof(setup->channels[0]), (void(*)(til_setup_t *))free); + setup = til_setup_new(sizeof(*setup) + sizeof(setup->channels[0]), NULL); if (!setup) return -ENOMEM; -- cgit v1.2.1