diff options
author | Theodore Ts'o <tytso@mit.edu> | 2008-07-25 12:41:32 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2008-07-25 12:41:32 -0400 |
commit | 7087bbecceba43248953b57a46a6a8be700ee9c7 (patch) | |
tree | add864fcd198ed8df5dee9bb3ba03c6bbed9b188 /misc | |
parent | 56fc0a702a429d47d53c49839123d26f8f7221f2 (diff) | |
download | e2fsprogs-7087bbecceba43248953b57a46a6a8be700ee9c7.tar.gz |
mke2fs/tune2fs: Fix max journal size in message to be consistent/correct
Addresses-Debian-Bug: #491620
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'misc')
-rw-r--r-- | misc/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
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=<journal size in megabytes>\n" "\tdevice=<journal device>\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); } |