fix: correct JACK shutdown callback signature and suppress unused parameter warning

Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
Loic Coenen
2026-05-01 00:49:21 +00:00
parent 7df107eb1e
commit 1e1594adca
2 changed files with 3 additions and 2 deletions

1
main.c
View File

@@ -8,6 +8,7 @@ static Engine engine;
static volatile int keep_running = 1;
void signal_handler(int sig) {
(void)sig;
keep_running = 0;
}