summaryrefslogtreecommitdiff
path: root/main/cli.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/cli.c')
-rw-r--r--main/cli.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/cli.c b/main/cli.c
index e5118ede6..6a2a39f81 100644
--- a/main/cli.c
+++ b/main/cli.c
@@ -2191,7 +2191,8 @@ static char *help1(int fd, const char * const match[], int locked)
continue;
if (match && strncasecmp(matchstr, e->_full_cmd, len))
continue;
- ast_cli(fd, "%30.30s %s\n", e->_full_cmd, S_OR(e->summary, "<no description available>"));
+ ast_cli(fd, "%-30s -- %s\n", e->_full_cmd,
+ S_OR(e->summary, "<no description available>"));
found++;
}
if (!locked)