diff mbox

{PATCH] e2fsprogs: fix printf format in print_blocks_proc()

Message ID 538777C6.7080001@redhat.com
State Superseded, archived
Headers show

Commit Message

Eric Sandeen May 29, 2014, 6:09 p.m. UTC
blockcnt is of type e2_blkcnt_t, which is:

typedef __s64 __bitwise         e2_blkcnt_t;

so use %lld not %d to print it.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
---

--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/lib/ext2fs/tst_libext2fs.c b/lib/ext2fs/tst_libext2fs.c
index 1f63eb7..b4fb7f2 100644
--- a/lib/ext2fs/tst_libext2fs.c
+++ b/lib/ext2fs/tst_libext2fs.c
@@ -37,7 +37,7 @@  static int print_blocks_proc(ext2_filsys fs EXT2FS_ATTR((unused)),
 			     blk64_t ref_block, int ref_offset,
 			     void *private EXT2FS_ATTR((unused)))
 {
-	printf("%6d %8llu (%d %llu)\n", blockcnt, *blocknr,
+	printf("%6lld %8llu (%d %llu)\n", (long long)blockcnt, *blocknr,
 	       ref_offset, ref_block);
 	return 0;
 }