From dd2ddd68fb82214294a5a211cd49ddc6e50e2ebb Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Sat, 8 Feb 2025 00:03:46 +0000 Subject: [PATCH] Fix build with gcc 15 --- Receivers/unix/jack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Receivers/unix/jack.c b/Receivers/unix/jack.c index 3da8599..fe24d3c 100644 --- a/Receivers/unix/jack.c +++ b/Receivers/unix/jack.c @@ -110,7 +110,7 @@ jo_data; static int init_resampler(); static int init_channels(); static int connect_ports(); -static int process_source_data(); +static int process_source_data(receiver_data_t *data); // JACK realtime process callback int jack_process(jack_nframes_t nframes, void *arg);