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:
Wim Taymans 2021-06-18 15:24:08 +02:00
parent def0caf281
commit fb992c3f2d

View file

@ -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