From 57d4fb66d237fd8b734d2aa6b13502fac9c6e5a3 Mon Sep 17 00:00:00 2001 From: "Darrick J. Wong" Date: Thu, 12 Dec 2013 12:29:07 -0500 Subject: [PATCH] debugfs: fix init_filesys help text The help text for debugfs' init_filesys command is incorrect; the second parameter is the size of the filesystem in blocks, not the size of an individual filesystem block. There is in fact no way to set that parameter. Reported-by: Zheng Liu Signed-off-by: Darrick J. Wong Signed-off-by: "Theodore Ts'o" --- debugfs/debugfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c index 902ee66..f870129 100644 --- a/debugfs/debugfs.c +++ b/debugfs/debugfs.c @@ -280,7 +280,7 @@ void do_init_filesys(int argc, char **argv) int err; if (common_args_process(argc, argv, 3, 3, "initialize", - " ", CHECK_FS_NOTOPEN)) + " ", CHECK_FS_NOTOPEN)) return; memset(¶m, 0, sizeof(struct ext2_super_block)); -- 1.8.3.1