2023-01-21 20:37:50

by Eric Biggers

[permalink] [raw]
Subject: [PATCH 18/38] lib/ext2fs: fix a printf format specifier in file_test()

From: Eric Biggers <[email protected]>

size_t should be matched by %zu, not %lu. This fixes a -Wformat warning
when building for 32-bit x86.

Signed-off-by: Eric Biggers <[email protected]>
---
lib/ext2fs/inline_data.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/ext2fs/inline_data.c b/lib/ext2fs/inline_data.c
index b62fb6769..bd52e3770 100644
--- a/lib/ext2fs/inline_data.c
+++ b/lib/ext2fs/inline_data.c
@@ -653,7 +653,7 @@ static errcode_t file_test(ext2_filsys fs)

if (size != BUFF_SIZE) {
fprintf(stderr,
- "tst_inline_data: size %lu != buflen %u\n",
+ "tst_inline_data: size %zu != buflen %u\n",
size, BUFF_SIZE);
retval = 1;
goto err;
--
2.39.0