From 4136346bed394b8e0f922ff5f522c643ded02d59 Mon Sep 17 00:00:00 2001 From: xaizek Date: Fri, 11 Sep 2026 21:34:54 +0300 Subject: [PATCH 1/3] Fix building tests with newer GCC --- tests/busy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/busy.c b/tests/busy.c index b3afb7c..8acbcd8 100644 --- a/tests/busy.c +++ b/tests/busy.c @@ -3,7 +3,7 @@ #include #include -void *loop() +void *loop(void *unused) { while(1); } @@ -23,7 +23,7 @@ int main(int argc, char **argv) { exit(1); } } - loop(); + loop(NULL); return 0; } -- 2.55.0