From 7087bbecceba43248953b57a46a6a8be700ee9c7 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Fri, 25 Jul 2008 12:41:32 -0400 Subject: [PATCH] mke2fs/tune2fs: Fix max journal size in message to be consistent/correct Addresses-Debian-Bug: #491620 Signed-off-by: "Theodore Ts'o" --- misc/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/util.c b/misc/util.c index 7c99a2a2..8185d207 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); }