]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
e2image: fix printf format type match
authorTheodore Ts'o <tytso@mit.edu>
Mon, 30 Dec 2013 21:12:27 +0000 (16:12 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 30 Dec 2013 21:56:19 +0000 (16:56 -0500)
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
misc/e2image.c

index 0537b0d8c3b9188862151b8f5c1149b5860ef233..402ea9ff6799deedc7853e70eca4d4e0707d4736 100644 (file)
@@ -707,7 +707,7 @@ more_blocks:
                        fputc('\b', stderr);
                strftime(buff, 30, "%T", gmtime(&duration));
                fprintf(stderr, _("\b\b\b\b\b\b\b\bCopied %llu / %llu "
-                        "blocks (%llu%%) in %s at %.2f MB/s       \n"),
+                        "blocks (%d%%) in %s at %.2f MB/s       \n"),
                       total_written, meta_blocks_count,
                       calc_percent(total_written, meta_blocks_count), buff,
                       calc_rate(total_written, fs->blocksize, duration));