Re: [PATCH] selftests/alsa:Fix printf format string in pcm-test.c

2024-06-27 Thread Takashi Iwai
On Wed, 26 Jun 2024 10:48:59 +0200, Zhu Jun wrote: > > Inside of test_pcm_time() arguments are printed via printf > but '%d' is used to print @flags (of type unsigned int). > Use '%u' instead, just like we do everywhere else. > > Signed-off-by: Zhu Jun Applied now to for-next branch. Thanks.

Re: [PATCH] selftests/alsa:Fix printf format string in pcm-test.c

2024-06-26 Thread Mark Brown
On Wed, Jun 26, 2024 at 01:48:59AM -0700, Zhu Jun wrote: > Inside of test_pcm_time() arguments are printed via printf > but '%d' is used to print @flags (of type unsigned int). > Use '%u' instead, just like we do everywhere else. > > Signed-off-by: Zhu Jun Reviewed-by: Mark Brown signature.as

[PATCH] selftests/alsa:Fix printf format string in pcm-test.c

2024-06-26 Thread Zhu Jun
Inside of test_pcm_time() arguments are printed via printf but '%d' is used to print @flags (of type unsigned int). Use '%u' instead, just like we do everywhere else. Signed-off-by: Zhu Jun --- tools/testing/selftests/alsa/pcm-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --