mirror of https://github.com/libsdl-org/SDL.git
pipewire: Ensure that the correct struct is used for enumeration APIs
PipeWire now requires the correct struct type is used, otherwise it will fail to compile. Reference:188d920733Fixes: https://github.com/libsdl-org/SDL/issues/12224 (cherry picked from commitd35bef64e9) (cherry picked from commit6be87ceb33)
This commit is contained in:
parent
53c022c880
commit
9e079fe9c7
|
|
@ -590,7 +590,7 @@ static void node_event_info(void *object, const struct pw_node_info *info)
|
||||||
|
|
||||||
/* Need to parse the parameters to get the sample rate */
|
/* Need to parse the parameters to get the sample rate */
|
||||||
for (i = 0; i < info->n_params; ++i) {
|
for (i = 0; i < info->n_params; ++i) {
|
||||||
pw_node_enum_params(node->proxy, 0, info->params[i].id, 0, 0, NULL);
|
pw_node_enum_params((struct pw_node*)node->proxy, 0, info->params[i].id, 0, 0, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
hotplug_core_sync(node);
|
hotplug_core_sync(node);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue