From: Eric Whitney Date: Tue, 3 Dec 2013 04:37:02 +0000 (-0500) Subject: libext2fs: fix printf conversion spec in tst_iscan.c X-Git-Tag: v1.42.9~98 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=144f4e8ca511ef699570bc0426d5969d2b903d77;hp=3971bfe878d6c30f9b5be3a2c0310943982a4775;p=tools%2Fe2fsprogs.git libext2fs: fix printf conversion spec in tst_iscan.c A recent patch to fix blk_t to blk64_t assignment mismatches in e2fsprogs (commit 4dbfd79d1458ce1259b951377e341aeb6197f8c1) created a printf conversion spec / argument type mismatch in tst_iscan.c. Fix this to avoid truncation of the printed value and to silence a compiler warning seen when "make check" is run. Signed-off-by: Eric Whitney Signed-off-by: "Theodore Ts'o" --- diff --git a/lib/ext2fs/tst_iscan.c b/lib/ext2fs/tst_iscan.c index a95296c..70bfbec 100644 --- a/lib/ext2fs/tst_iscan.c +++ b/lib/ext2fs/tst_iscan.c @@ -182,7 +182,7 @@ static void check_map(void) for (i=0; test_vec[i]; i++) { if (ext2fs_test_block_bitmap2(touched_map, test_vec[i])) { - printf("Bad block was touched --- %u\n", test_vec[i]); + printf("Bad block was touched --- %llu\n", test_vec[i]); failed++; first_no_comma = 1; }