[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20241202043111.3888-1-zhangjiao2@cmss.chinamobile.com>
Date: Mon, 2 Dec 2024 12:31:11 +0800
From: zhangjiao2 <zhangjiao2@...s.chinamobile.com>
To: shuah@...nel.org
Cc: linux-kselftest@...r.kernel.org,
linux-kernel@...r.kernel.org,
zhang jiao <zhangjiao2@...s.chinamobile.com>
Subject: [PATCH] selftests: kselftest: Fix the wrong format specifier
From: zhang jiao <zhangjiao2@...s.chinamobile.com>
The format specifier of "unsigned int" in printf()
should be "%u", not "%d".
Signed-off-by: zhang jiao <zhangjiao2@...s.chinamobile.com>
---
tools/testing/selftests/kselftest.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/testing/selftests/kselftest.h b/tools/testing/selftests/kselftest.h
index 29fedf609611..062c02a7be2d 100644
--- a/tools/testing/selftests/kselftest.h
+++ b/tools/testing/selftests/kselftest.h
@@ -403,7 +403,7 @@ static inline __noreturn __printf(1, 2) void ksft_exit_skip(const char *msg, ...
*/
if (ksft_plan || ksft_test_num()) {
ksft_cnt.ksft_xskip++;
- printf("ok %d # SKIP ", 1 + ksft_test_num());
+ printf("ok %u # SKIP ", 1 + ksft_test_num());
} else {
printf("1..0 # SKIP ");
}
--
2.33.0
Powered by blists - more mailing lists