From 33ffcd9682bd1addb2236cf5ef81f7000c0c9d8e Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sat, 21 Jun 2025 14:27:21 +0200 Subject: [PATCH] do not do dynamic memory, static memory = static stability --- src/fm95.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fm95.c b/src/fm95.c index cf26995..964899d 100644 --- a/src/fm95.c +++ b/src/fm95.c @@ -392,7 +392,7 @@ int main(int argc, char **argv) { } } if(rds_on) { - if((pulse_error = read_PulseInputDevice(&rds_device, rds_in, sizeof(float) * BUFFER_SIZE * rds_streams);)) { + if((pulse_error = read_PulseInputDevice(&rds_device, rds_in, sizeof(float) * BUFFER_SIZE * rds_streams))) { if(pulse_error == -1) fprintf(stderr, "RDS95 PulseInputDevice reported as uninitialized."); else fprintf(stderr, "Error reading from RDS95 device: %s\n", pa_strerror(pulse_error)); to_run = 0;