From 189e6c22a9acb01b6eea26659f6944e60f6cb3d8 Mon Sep 17 00:00:00 2001 From: Ian Kelling Date: Thu, 9 Oct 2025 16:14:09 -0400 Subject: [PATCH] fix compiling with the latest gcc due to incorrect signature of the signal handler function. Patch authored by Jamie Learmonth --- evhz.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evhz.c b/evhz.c index 950f727..ff7b43c 100644 --- a/evhz.c +++ b/evhz.c @@ -39,7 +39,7 @@ typedef struct event_s { int quit = 0; -void sigint() { +void sigint(int sig) { quit = 1; } -- 2.30.2