Re: [PATCH] selftests:Fix printf format string in kselftest_harness.h

2024-07-10 Thread Shuah Khan
On 7/9/24 21:28, Zhu Jun wrote: '%u' in format string requires 'unsigned int' in __wait_for_test() but the argument type is 'signed int'. Signed-off-by: Zhu Jun --- tools/testing/selftests/kselftest_harness.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testing/s

[PATCH] selftests:Fix printf format string in kselftest_harness.h

2024-07-09 Thread Zhu Jun
'%u' in format string requires 'unsigned int' in __wait_for_test() but the argument type is 'signed int'. Signed-off-by: Zhu Jun --- tools/testing/selftests/kselftest_harness.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testing/selftests/kselftest_harness.h b/tool