Bug fix: Faulty signal handler prototype spoiled compilation under C23

This commit is contained in:
Thomas Schmitt 2024-11-26 23:02:03 +01:00
parent 434432fdac
commit d537f9dd35

View File

@ -14,7 +14,7 @@ static struct burn_drive_info *drives;
static unsigned int n_drives;
int NEXT;
static void catch_int ()
static void catch_int (int signum)
{
NEXT = 1;
}