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: 188d920733

Fixes: https://github.com/libsdl-org/SDL/issues/12224
This commit is contained in:
Neal Gompa 2025-02-10 05:00:56 -05:00 committed by Ryan C. Gordon
parent 9bd6d36471
commit d35bef64e9
1 changed files with 1 additions and 1 deletions

View File

@ -548,7 +548,7 @@ static void node_event_info(void *object, const struct pw_node_info *info)
// Need to parse the parameters to get the sample rate
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);