fix signal handler (according to POSIX spec requires an int as parameter)

master
BodgeMaster 2026-01-22 20:13:36 +01:00
parent 9c209293e6
commit 0645fe27ac
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ ssize_t write_size;
// 1 stdin
struct pollfd polls_pls[NUMBER_OF_POLLED_FILES];
void stop() {
void stop([[maybe_unused]] int ignored) {
stop_now = true;
}