From: Andrew F. Davis Date: Tue, 17 Sep 2019 21:09:35 +0000 (-0400) Subject: tools: dumpimage: Fall-though to print usage for help command X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=e3cd06be93e7e669a93d5786d131f421f346a925;p=u-boot.git 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 Reviewed-by: Lokesh Vutla --- 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;