mirror of
git://sourceware.org/git/lvm2.git
synced 2025-03-08 08:58:50 +03:00
help: fix missing newlines
Recent commits to remove newlines from man output accidentally removed some newlines from help output.
This commit is contained in:
parent
60eb74a27a
commit
5c5df43ea3
@ -1869,6 +1869,7 @@ void print_usage(struct command *cmd, int longhelp, int desc_first)
|
||||
if (!desc_first && cmd->desc)
|
||||
_print_usage_description(cmd);
|
||||
|
||||
printf("\n");
|
||||
return;
|
||||
}
|
||||
|
||||
@ -1915,7 +1916,7 @@ void print_usage_common_lvm(struct command_name *cname, struct command *cmd)
|
||||
printf(" ]");
|
||||
}
|
||||
|
||||
printf("\n");
|
||||
printf("\n\n");
|
||||
}
|
||||
|
||||
void print_usage_common_cmd(struct command_name *cname, struct command *cmd)
|
||||
@ -1988,7 +1989,7 @@ void print_usage_common_cmd(struct command_name *cname, struct command *cmd)
|
||||
printf(" ]");
|
||||
}
|
||||
|
||||
printf("\n");
|
||||
printf("\n\n");
|
||||
}
|
||||
|
||||
void print_usage_notes(struct command_name *cname)
|
||||
|
Loading…
x
Reference in New Issue
Block a user