summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAndrew F. Davis <afd@ti.com>2019-09-18 00:09:35 +0300
committerTom Rini <trini@konsulko.com>2020-01-07 19:12:47 +0300
commite3cd06be93e7e669a93d5786d131f421f346a925 (patch)
tree9de4bc38b6c465af7ab8ed78602bbc2ccadf3495 /tools
parente5b5628e8a3e4476509a025121315480ea7b79ca (diff)
downloadu-boot-e3cd06be93e7e669a93d5786d131f421f346a925.tar.xz
tools: dumpimage: Fall-though to print usage for help command
This has the same result but some compilers will warn about this fall-through if there are statements as part of the label block. Signed-off-by: Andrew F. Davis <afd@ti.com> Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/dumpimage.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/dumpimage.c b/tools/dumpimage.c
index d5f893daf1..e5481435a7 100644
--- a/tools/dumpimage.c
+++ b/tools/dumpimage.c
@@ -104,7 +104,6 @@ int main(int argc, char **argv)
printf("dumpimage version %s\n", PLAIN_VERSION);
exit(EXIT_SUCCESS);
case 'h':
- usage();
default:
usage();
break;