pass the right types to the methods

This currently works because we accept void* for these functions but it
will fail when we will use the real types.
This commit is contained in:
Wim Taymans 2024-11-20 10:17:37 +01:00
parent e393e57a26
commit 188d920733
4 changed files with 4 additions and 4 deletions

View file

@ -809,7 +809,7 @@ int pw_manager_set_metadata(struct pw_manager *manager,
value = NULL;
}
pw_metadata_set_property(metadata->proxy,
pw_metadata_set_property((struct pw_metadata*)metadata->proxy,
subject, key, type, value);
return 0;
}