]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
test suite: use %zu to print size_t
authorMatthew Wilcox (Oracle) <willy@infradead.org>
Thu, 3 Apr 2025 00:33:11 +0000 (20:33 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 Apr 2025 08:43:50 +0000 (10:43 +0200)
commitd8a632fbc739052f33e405851389c7fff90c13f4
tree9423861924ea36feaf4e42b566798c785515574d
parenteac3413518d0691c112829ef06d9f1d005fdaca8
test suite: use %zu to print size_t

[ Upstream commit a30951d09c33c899f0e4aca80eb87fad5f10ecfa ]

On 32-bit, we can't use %lu to print a size_t variable and gcc warns us
about it.  Shame it doesn't warn about it on 64-bit.

Link: https://lkml.kernel.org/r/20250403003311.359917-1-Liam.Howlett@oracle.com
Fixes: cc86e0c2f306 ("radix tree test suite: add support for slab bulk APIs")
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
tools/testing/radix-tree/linux.c