From c135b89eb2cf09e86676fc121d449883b55740d4 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Tue, 1 Nov 2011 14:49:38 +0200 Subject: [PATCH] btmgmt: Fix help formatting The command minimum field width needs to be bigger to accommodate for longer commands. --- mgmt/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mgmt/main.c b/mgmt/main.c index 47ae57ec2..2ca842d3d 100644 --- a/mgmt/main.c +++ b/mgmt/main.c @@ -852,7 +852,7 @@ static void usage(void) printf("Commands:\n"); for (i = 0; command[i].cmd; i++) - printf("\t%-4s\t%s\n", command[i].cmd, command[i].doc); + printf("\t%-15s\t%s\n", command[i].cmd, command[i].doc); printf("\n" "For more information on the usage of each command use:\n" -- 2.47.3