diff options
author | B. Watson <urchlay@slackware.uk> | 2025-05-11 04:59:15 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2025-05-11 04:59:15 -0400 |
commit | 8aca25c53660bf1d48feefaf09a13040a37677d1 (patch) | |
tree | 208ef25420a50c675b67c173f5bb0eb1fa03fddb /marsond.c | |
parent | 2cdc7ddbc7b7b87da7f4269b4378febb958a4582 (diff) | |
download | marsond-8aca25c53660bf1d48feefaf09a13040a37677d1.tar.gz |
fix compile with pcc and tcc.
Diffstat (limited to 'marsond.c')
-rw-r--r-- | marsond.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |