Use (void) instead of void

This commit is contained in:
2022-10-13 15:59:16 +02:00
parent 92779e5dba
commit 54313551fc
9 changed files with 23 additions and 23 deletions
+2 -2
View File
@@ -15,9 +15,9 @@
#include <signal.h>
int terminate = 0;
volatile sig_atomic_t terminate = 0;
void ws_terminate() {
void ws_terminate(int _) {
terminate = 1;
}