From ac6f8f6de98ab5fe672a47a37441b729150fe629 Mon Sep 17 00:00:00 2001 From: mrfoxygmfr Date: Thu, 22 May 2025 19:48:43 +0300 Subject: fix(build): now builds with clang --- lib/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') 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 void timer_handler(int signum) { - signum = signum; + signum = signum * 2; printf("Stopping due to timeout\n"); exit(EXIT_FAILURE); -- cgit mrf-deployment