pulse-server: rename module_info::prepare() to create()

Now that the method does not actually create the `module` object,
it would be somewhat misleading to call it "create",
so rename it to "prepare".
This commit is contained in:
Barnabás Pőcze 2022-06-01 20:53:42 +02:00
parent fa3a28ab68
commit 75d28cadcd
25 changed files with 57 additions and 57 deletions

View file

@ -40,7 +40,7 @@ struct module_info {
unsigned int load_once:1;
int (*create) (struct module *module);
int (*prepare) (struct module *module);
int (*load) (struct client *client, struct module *module);
int (*unload) (struct module *module);