pulse-server: module: remove unused client argument

None of the modules use the `client` argument in their
unload callbacks. Remove it.
This commit is contained in:
Barnabás Pőcze 2022-01-30 17:08:55 +01:00 committed by Wim Taymans
parent bc2914b3e9
commit f5e561c2fe
24 changed files with 28 additions and 28 deletions

View file

@ -4828,7 +4828,7 @@ static int do_unload_module(struct client *client, uint32_t command, uint32_t ta
if (module == NULL)
return -ENOENT;
module_unload(client, module);
module_unload(module);
return reply_simple_ack(client, tag);
}