aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2024-04-09 21:28:36 +0100
committerMark Brown <broonie@kernel.org>2024-04-09 21:28:36 +0100
commitc647ffd781d7a7121063ada370659e048235bd47 (patch)
treef3fa40edb2935a79da0c8ed433609ff44eb41bee
parent7d9656aa8e6ecb7cc130dd10e083de12f4c10476 (diff)
downloadci-clone3-warning-fix.tar.gz
selftests/clone3: Fix compiler warningclone3-warning-fix
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>
-rw-r--r--tools/testing/selftests/clone3/clone3_set_tid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/clone3/clone3_set_tid.c b/tools/testing/selftests/clone3/clone3_set_tid.c
index 9ae38733cb6ee0..fbf813a5a06fd4 100644
--- a/tools/testing/selftests/clone3/clone3_set_tid.c
+++ b/tools/testing/selftests/clone3/clone3_set_tid.c
@@ -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);
}