summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2017-03-15 11:40:59 -0500
committerDavid Teigland <teigland@redhat.com>2017-03-15 11:40:59 -0500
commit5c5df43ea31ec848a1d5483541afb75c67e3558f (patch)
tree003feb50b6a438e7bbce053effd8df5439d882d7
parent60eb74a27ad91112d9a3d0409286e1de2789418f (diff)
downloadlvm2-5c5df43ea31ec848a1d5483541afb75c67e3558f.tar.gz
help: fix missing newlines
Recent commits to remove newlines from man output accidentally removed some newlines from help output.
-rw-r--r--tools/command.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/command.c b/tools/command.c
index 514a71ce6..6335d0654 100644
--- a/tools/command.c
+++ b/tools/command.c
@@ -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)