From: Theodore Ts'o Date: Fri, 25 Jul 2008 16:41:32 +0000 (-0400) Subject: mke2fs/tune2fs: Fix max journal size in message to be consistent/correct X-Git-Tag: v1.41.1~94 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=7087bbecceba43248953b57a46a6a8be700ee9c7;p=tools%2Fe2fsprogs.git mke2fs/tune2fs: Fix max journal size in message to be consistent/correct Addresses-Debian-Bug: #491620 Signed-off-by: "Theodore Ts'o" --- diff --git a/misc/util.c b/misc/util.c index 7c99a2a..8185d20 100644 --- a/misc/util.c +++ b/misc/util.c @@ -233,7 +233,7 @@ void parse_journal_opts(const char *opts) "\tsize=\n" "\tdevice=\n\n" "The journal size must be between " - "1024 and 102400 filesystem blocks.\n\n"), stderr); + "1024 and 10240000 filesystem blocks.\n\n"), stderr); free(buf); exit(1); }