mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
impl-metadata: use the metadata method
so that we call the method of the actual implementation, not our own implementation.
This commit is contained in:
parent
def0caf281
commit
fb992c3f2d
1 changed files with 1 additions and 1 deletions
|
|
@ -568,7 +568,7 @@ int pw_impl_metadata_set_property(struct pw_impl_metadata *metadata,
|
|||
uint32_t subject, const char *key, const char *type,
|
||||
const char *value)
|
||||
{
|
||||
return impl_set_property(metadata->metadata, subject, key, type, value);
|
||||
return pw_metadata_set_property(metadata->metadata, subject, key, type, value);
|
||||
}
|
||||
|
||||
SPA_EXPORT
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue