From ecc91dbd1f4af20ff7290235e7930cf43136e5df Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Thu, 11 Jun 2026 08:03:36 +0000 Subject: [PATCH] test: another clang compilation error fix test_iters.c:29:1: error: non-void function does not return a value [-Werror,-Wreturn-type] 29 | } | ^ 1 error generated. make: *** [Makefile:48: test_iters.o] Error 1 Signed-off-by: Adrian Reber --- test/others/libcriu/test_iters.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/others/libcriu/test_iters.c b/test/others/libcriu/test_iters.c index edbaf87f6..93ae6f3e3 100644 --- a/test/others/libcriu/test_iters.c +++ b/test/others/libcriu/test_iters.c @@ -18,7 +18,7 @@ static void sh(int sig) stop = 1; } -static int open_imgdir(void) +static void open_imgdir(void) { char p[10];