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.
This commit is contained in:
Florian "sp1rit"​ 2024-12-14 18:55:44 +01:00
parent e1048aa938
commit 967f030a78
No known key found for this signature in database
GPG Key ID: BA579378AC81FB05

View File

@ -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);
}
}