Whamcloud - gitweb
mke2fs.c (PRS): Fix missing close parenthesis from bad inode
authorTheodore Ts'o <tytso@mit.edu>
Thu, 16 Jun 2005 18:10:55 +0000 (14:10 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 16 Jun 2005 18:10:55 +0000 (14:10 -0400)
ratio error message.

misc/ChangeLog
misc/mke2fs.c

index ec60319..334695b 100644 (file)
@@ -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.
index 5f29a85..4c93c9f 100644 (file)
@@ -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);