pw_impl_module_load -> pw_context_load_module

This commit is contained in:
Wim Taymans 2019-12-11 17:40:32 +01:00
parent 3084809bed
commit bc0dcd2e34
8 changed files with 16 additions and 16 deletions

View file

@ -179,7 +179,7 @@ execute_command_module_load(struct pw_command *command, struct pw_context *conte
{
struct pw_impl_module *module;
module = pw_impl_module_load(context, command->args[1], command->args[2], NULL);
module = pw_context_load_module(context, command->args[1], command->args[2], NULL);
if (module == NULL) {
asprintf(err, "could not load module \"%s\": %m", command->args[1]);
return -errno;