Fix the following checkpatch warnings: WARNING: unnecessary whitespace before a quoted newline #1166: FILE: mkfs/mkfs.c:1166: + "Usage: %s [-b block-size] [-B blocks-per-segment] [-c] [-f] \n" WARNING: unnecessary whitespace before a quoted newline #1167: FILE: mkfs/mkfs.c:1167: + " [-L volume-label] [-m reserved-segments-percentage] \n" WARNING: unnecessary whitespace before a quoted newline #1168: FILE: mkfs/mkfs.c:1168: + " [-O feature[,...]] \n" Signed-off-by: Ryusuke Konishi <konishi.ryusuke@xxxxxxxxxxxxx> --- sbin/mkfs/mkfs.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sbin/mkfs/mkfs.c b/sbin/mkfs/mkfs.c index 4d6c375..f4be411 100644 --- a/sbin/mkfs/mkfs.c +++ b/sbin/mkfs/mkfs.c @@ -1163,9 +1163,10 @@ static void parse_options(int argc, char *argv[]) static void usage(void) { fprintf(stderr, - "Usage: %s [-b block-size] [-B blocks-per-segment] [-c] [-f] \n" - " [-L volume-label] [-m reserved-segments-percentage] \n" - " [-O feature[,...]] \n" + "Usage: %s [-b block-size] [-B blocks-per-segment] [-c] " \ + "[-f]\n" \ + " [-L volume-label] [-m reserved-segments-percentage]\n" \ + " [-O feature[,...]]\n" \ " [-hnqvKV] device\n", progname); } -- 1.7.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-nilfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html