diff options
author | Theodore Ts'o <tytso@mit.edu> | 2005-06-16 14:10:55 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2005-06-16 14:10:55 -0400 |
commit | d7febfa7cccf21f4f991bcea6174a11b3cf564c9 (patch) | |
tree | 60f0937470754490634573e8dc823ed88e3df4ec /misc | |
parent | 15f5051e390bfb5a9e64d01b26a52fad43514652 (diff) | |
download | e2fsprogs-d7febfa7cccf21f4f991bcea6174a11b3cf564c9.tar.gz |
mke2fs.c (PRS): Fix missing close parenthesis from bad inode
ratio error message.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/ChangeLog | 5 | ||||
-rw-r--r-- | misc/mke2fs.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/misc/ChangeLog b/misc/ChangeLog index ec603193..334695bc 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -1,3 +1,8 @@ +2005-06-16 Theodore Ts'o <tytso@mit.edu> + + * mke2fs.c (PRS): Fix missing close parenthesis from bad inode + ratio error message. + 2005-06-05 Theodore Ts'o <tytso@mit.edu> * blkid.8.in: Minor spelling fix. diff --git a/misc/mke2fs.c b/misc/mke2fs.c index 5f29a852..4c93c9fb 100644 --- a/misc/mke2fs.c +++ b/misc/mke2fs.c @@ -1033,7 +1033,7 @@ static void PRS(int argc, char *argv[]) inode_ratio > EXT2_MAX_BLOCK_SIZE * 1024 || *tmp) { com_err(program_name, 0, - _("bad inode ratio %s (min %d/max %d"), + _("bad inode ratio %s (min %d/max %d)"), optarg, EXT2_MIN_BLOCK_SIZE, EXT2_MAX_BLOCK_SIZE); exit(1); |