From 967f030a78ff0340bbccb1d671c659cac314db23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20=22sp1rit=22=E2=80=8B?= Date: Sat, 14 Dec 2024 18:55:44 +0100 Subject: [PATCH] tests/parallel: build on 32bit platforms without warnings The compiler complains about the size of the arguments on android x86 which causes the ci run with -Dwerror=true to fail. --- tests/parallel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/parallel.c b/tests/parallel.c index 3b3c5b1085..3450e48c3b 100644 --- a/tests/parallel.c +++ b/tests/parallel.c @@ -47,6 +47,6 @@ main (int argc, char *argv[]) elapsed += g_get_monotonic_time () - before; } - g_print ("%lu, %lu, %lu, %f\n", width, height, width * height, ((double)(elapsed / rounds)) / 1000.0); + g_print ("%zu, %zu, %zu, %f\n", width, height, width * height, ((double)(elapsed / rounds)) / 1000.0); } }