From d9e29e70f39ee961b8712b53e242cc6f84d57dda Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 30 May 2023 15:57:07 +0200 Subject: [PATCH] module-ffado: fix compilation with -UFASTPATH --- src/modules/module-ffado-driver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/module-ffado-driver.c b/src/modules/module-ffado-driver.c index b20d02176..64fdbc2ac 100644 --- a/src/modules/module-ffado-driver.c +++ b/src/modules/module-ffado-driver.c @@ -160,7 +160,6 @@ struct stream { struct volume volume; unsigned int running:1; - unsigned int connect:1; }; struct impl { @@ -209,6 +208,7 @@ struct impl { uint32_t pw_xrun; uint32_t ffado_xrun; + uint32_t frame_time; pthread_t thread; @@ -675,7 +675,7 @@ static void *ffado_process_thread(void *arg) { struct impl *impl = arg; bool source_running, sink_running; - uint32_t nsec; + uint64_t nsec; while (true) { ffado_wait_response response;