mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
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:
parent
e393e57a26
commit
188d920733
4 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue