opensc-explorer: more room for commands in 'help'

In the output of the interacive command 'help', leave more room
for the command names so that they do not flow into the descrition.

Patch from Peter Marschall <peter@adpm.de>

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@5416 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
martin 2011-05-03 05:38:59 +00:00
parent ab225db83d
commit 59e3e659b5
1 changed files with 1 additions and 1 deletions

View File

@ -1467,7 +1467,7 @@ static void usage(void)
printf("Supported commands:\n");
for (cmd = cmds; cmd->name; cmd++)
printf(" %-10s %s\n", cmd->name, cmd->help);
printf(" %-16s %s\n", cmd->name, cmd->help);
}
static int parse_line(char *in, char **argv, int maxargc)