mke2fs: fix mke2fs "invalid inode ratio" error message

Make error message consistent with the validity test.

Signed-off-by: Tim Small <tim@seoss.co.uk>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
bitmap-optimize
Tim Small 2010-07-30 20:43:11 -04:00 committed by Theodore Ts'o
parent eddf36bac0
commit e447ba3731
1 changed files with 1 additions and 1 deletions

View File

@ -1285,7 +1285,7 @@ static void PRS(int argc, char *argv[])
com_err(program_name, 0,
_("invalid inode ratio %s (min %d/max %d)"),
optarg, EXT2_MIN_BLOCK_SIZE,
EXT2_MAX_BLOCK_SIZE);
EXT2_MAX_BLOCK_SIZE * 1024);
exit(1);
}
break;