mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-20 08:56:56 -05: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
|
|
@ -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