summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2017-01-13 02:13:06 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2017-01-27 15:03:46 +0900
commit4f96a498436d63864de38b29ff2496755e16fb0c (patch)
treee8c95050572e180e53552da5ab7dd7adf87b781e /tools
parentee07932080e2400d5b0456ae0a200cb849b83bf4 (diff)
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>
Diffstat (limited to 'tools')
-rw-r--r--tools/fiptool/fiptool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/fiptool/fiptool.c b/tools/fiptool/fiptool.c
index a15e827e..0040018b 100644
--- a/tools/fiptool/fiptool.c
+++ b/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);