mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
control: don't fail on async port_set_io
This commit is contained in:
parent
2d8bce7479
commit
d648ea4ad3
2 changed files with 2 additions and 2 deletions
|
|
@ -1 +1 @@
|
|||
Subproject commit ad086e33498cbde349bb9452807f7b561b473d41
|
||||
Subproject commit 4bd1e9a9ff70bf50611e85d9244e70da04dfd13c
|
||||
|
|
@ -147,7 +147,7 @@ static int port_set_io(struct pw_port *port, uint32_t mix, uint32_t id, void *da
|
|||
|
||||
if (port->mix) {
|
||||
res = spa_node_port_set_io(port->mix, port->direction, mix, id, data, size);
|
||||
if (res == 0)
|
||||
if (SPA_RESULT_IS_OK(res))
|
||||
return res;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue