From: Shen-Ta Hsieh Date: Mon, 18 Dec 2017 15:18:52 +0000 (+0800) Subject: debugfs: fix printf format %d on ext2_ino_t X-Git-Tag: v1.43.8~2 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=88580763fc59bda0a9ba4610997451900e21612c;p=tools%2Fe2fsprogs.git debugfs: fix printf format %d on ext2_ino_t Signed-off-by: Shen-Ta Hsieh Signed-off-by: Theodore Ts'o --- diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c index 6ea14c3..91ededf 100644 --- a/debugfs/debugfs.c +++ b/debugfs/debugfs.c @@ -2125,7 +2125,7 @@ void do_idump(int argc, char *argv[]) err = ext2fs_read_inode_full(current_fs, ino, (struct ext2_inode *)buf, isize); if (err) { - com_err(argv[0], err, "while reading inode %d", ino); + com_err(argv[0], err, "while reading inode %u", ino); goto err; }