diff options
author | mrfoxygmfr <mrfoxygmfr@sch9.ru> | 2025-05-22 19:48:43 +0300 |
---|---|---|
committer | mrfoxygmfr <mrfoxygmfr@sch9.ru> | 2025-05-22 19:48:43 +0300 |
commit | ac6f8f6de98ab5fe672a47a37441b729150fe629 (patch) | |
tree | 831310d1d5f24783832e9cd753eac8b138624439 /lib | |
parent | 1592c5335a3aa157772715a7127cfcb115b5d860 (diff) |
fix(build): now builds with clang
Diffstat (limited to 'lib')
-rw-r--r-- | lib/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common.c b/lib/common.c index 6a54108..8167493 100644 --- a/lib/common.c +++ b/lib/common.c @@ -2,7 +2,7 @@ #include <signal.h> void timer_handler(int signum) { - signum = signum; + signum = signum * 2; printf("Stopping due to timeout\n"); exit(EXIT_FAILURE); |