Browse Source

fiptool: fix the global option in usage

The global option --verbose should come after the "fiptool".

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
pull/799/head
Masahiro Yamada 8 years ago
parent
commit
4f96a49843
  1. 2
      tools/fiptool/fiptool.c

2
tools/fiptool/fiptool.c

@ -1226,7 +1226,7 @@ static int help_cmd(int argc, char *argv[])
static void usage(void)
{
printf("usage: [--verbose] fiptool <command> [<args>]\n");
printf("usage: fiptool [--verbose] <command> [<args>]\n");
printf("Global options supported:\n");
printf(" --verbose\tEnable verbose output for all commands.\n");
fputc('\n', stderr);

Loading…
Cancel
Save