From b2032647a56f29869389be15789647de91c238d9 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Thu, 25 Sep 2025 13:59:13 +0200 Subject: [PATCH] tests: fix compiler error the build fails on RHEL 8 with: tests/tests_libcrun_fuzzer.c: In function 'sig_chld': tests/tests_libcrun_fuzzer.c:466:11: error: parameter name omitted sig_chld (int) ^~~ make: *** [Makefile:2684: tests/tests_libcrun_fuzzer-tests_libcrun_fuzzer.o] Error 1 Signed-off-by: Giuseppe Scrivano --- tests/tests_libcrun_fuzzer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_libcrun_fuzzer.c b/tests/tests_libcrun_fuzzer.c index 313c25c7a8..ef4a2c6651 100644 --- a/tests/tests_libcrun_fuzzer.c +++ b/tests/tests_libcrun_fuzzer.c @@ -463,7 +463,7 @@ LLVMFuzzerTestOneInput (uint8_t *buf, size_t len) } static void -sig_chld (int) +sig_chld (int sig arg_unused) { int status; pid_t p;