mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -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
|
|
@ -2326,7 +2326,7 @@ static int vidioc_s_ctrl(struct file *file, struct v4l2_control *arg)
|
|||
}
|
||||
|
||||
param = spa_pod_builder_pop(&b, &f[0]);
|
||||
pw_node_set_param(file->node->proxy, SPA_PARAM_Props, 0, param);
|
||||
pw_node_set_param((struct pw_node*)file->node->proxy, SPA_PARAM_Props, 0, param);
|
||||
|
||||
found = true;
|
||||
pw_log_info("ctrl 0x%08" PRIx32 " set ok", arg->id);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue