From 9266fc7a2fe49c6de871016772a2120830e183a9 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Wed, 22 Apr 2009 15:13:37 -0400 Subject: [PATCH] tune2fs: Fix format string warnings Signed-off-by: "Theodore Ts'o" --- misc/tune2fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/tune2fs.c b/misc/tune2fs.c index b8fdd63..0af116c 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); } -- 1.8.3.1