From: Theodore Ts'o Date: Mon, 30 Dec 2013 21:12:27 +0000 (-0500) Subject: e2image: fix printf format type match X-Git-Tag: debian-1.42.9-2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d7e6e9787113db16df4c6c50a92da97364149e1a;p=thirdparty%2Fe2fsprogs.git e2image: fix printf format type match Signed-off-by: "Theodore Ts'o" --- diff --git a/misc/e2image.c b/misc/e2image.c index 0537b0d8c..402ea9ff6 100644 --- a/misc/e2image.c +++ b/misc/e2image.c @@ -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));