From: Theodore Ts'o Date: Wed, 22 Apr 2009 19:13:37 +0000 (-0400) Subject: tune2fs: Fix format string warnings X-Git-Tag: v1.41.5~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9266fc7a2fe49c6de871016772a2120830e183a9;p=thirdparty%2Fe2fsprogs.git tune2fs: Fix format string warnings Signed-off-by: "Theodore Ts'o" --- diff --git a/misc/tune2fs.c b/misc/tune2fs.c index b8fdd632d..0af116c5a 100644 --- a/misc/tune2fs.c +++ b/misc/tune2fs.c @@ -1543,7 +1543,7 @@ retry_open: * file. */ if (new_inode_size == EXT2_INODE_SIZE(fs->super)) { - fprintf(stderr, _("The inode size is already %d\n"), + fprintf(stderr, _("The inode size is already %lu\n"), new_inode_size); exit(1); }