From 8aca25c53660bf1d48feefaf09a13040a37677d1 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Sun, 11 May 2025 04:59:15 -0400 Subject: fix compile with pcc and tcc. --- marsond.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/marsond.c b/marsond.c index 71b5eb6..9bb7795 100644 --- a/marsond.c +++ b/marsond.c @@ -145,7 +145,7 @@ void cleanup(void) { manually killed. Cleanly exiting allows the physical keyboard to keep working (with the Enter key timing issue of course). */ -void sighandler(int sig, siginfo_t *si, void *) { +void sighandler(int sig, siginfo_t *si, void *unused) { if(sig != SIGTERM) { /* this should never happen! */ return; -- cgit v1.2.3