selftests/clone3: Fix compiler warning
authorMark Brown <broonie@kernel.org>
Tue, 9 Apr 2024 22:24:51 +0000 (23:24 +0100)
committerShuah Khan <skhan@linuxfoundation.org>
Mon, 6 May 2024 19:57:20 +0000 (13:57 -0600)
Shuah reported a compiler warning with an Ubuntu GCC 13 build, I've been
unable to reproduce it but hopefully this fixes the issue:

clone3_set_tid.c:136:43: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘size_t’ {aka ‘long unsigned int’} [-Wformat=]

Reported-by: Shuah Khan <skhan@linuxfoundation.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/selftests/clone3/clone3_set_tid.c

index 9ae38733cb6ee0e599c2cdafa54b1b632d2b8ebb..fbf813a5a06fd488120f84291301c823f7282bf4 100644 (file)
@@ -133,7 +133,7 @@ static void test_clone3_set_tid(const char *desc,
                "[%d] clone3() with CLONE_SET_TID %d says: %d - expected %d\n",
                getpid(), set_tid[0], ret, expected);
 
-       ksft_test_result(ret == expected, "%s with %d TIDs and flags 0x%x\n",
+       ksft_test_result(ret == expected, "%s with %zu TIDs and flags 0x%x\n",
                         desc, set_tid_size, flags);
 }