From: Shen-Ta Hsieh Date: Mon, 18 Dec 2017 15:19:52 +0000 (+0800) Subject: e2fsck: fix printf format %d on ext2_ino_t X-Git-Tag: v1.43.8~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=78999ca50f55e6ab609be97c3d9ca011ff83c284;p=thirdparty%2Fe2fsprogs.git e2fsck: fix printf format %d on ext2_ino_t Signed-off-by: Shen-Ta Hsieh Signed-off-by: Theodore Ts'o --- diff --git a/e2fsck/super.c b/e2fsck/super.c index 47c89c56f..5501c9e27 100644 --- a/e2fsck/super.c +++ b/e2fsck/super.c @@ -204,7 +204,7 @@ static int release_inode_blocks(e2fsck_t ctx, ext2_ino_t ino, block_buf, release_inode_block, &pb); if (retval) { com_err("release_inode_blocks", retval, - _("while calling ext2fs_block_iterate for inode %d"), + _("while calling ext2fs_block_iterate for inode %u"), ino); return 1; } @@ -227,7 +227,7 @@ static int release_inode_blocks(e2fsck_t ctx, ext2_ino_t ino, } if (retval) { com_err("release_inode_blocks", retval, - _("while calling ext2fs_adjust_ea_refcount2 for inode %d"), + _("while calling ext2fs_adjust_ea_refcount2 for inode %u"), ino); return 1; }