jack: fix set_sync_timeout

It needs to update the node activation, not the driver activation.
This commit is contained in:
Wim Taymans 2020-01-28 20:49:21 +01:00
parent 34e776a930
commit 84258c9078

View file

@ -3850,7 +3850,7 @@ int jack_set_sync_timeout (jack_client_t *client,
jack_time_t timeout) jack_time_t timeout)
{ {
struct client *c = (struct client *) client; struct client *c = (struct client *) client;
struct pw_node_activation *a = c->driver_activation; struct pw_node_activation *a = c->activation;
if (a == NULL) if (a == NULL)
return -EIO; return -EIO;