control: don't fail on async port_set_io

This commit is contained in:
Wim Taymans 2019-09-10 18:50:28 +02:00
parent 2d8bce7479
commit d648ea4ad3
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit ad086e33498cbde349bb9452807f7b561b473d41
Subproject commit 4bd1e9a9ff70bf50611e85d9244e70da04dfd13c

View file

@ -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;
}