diff options
author | Teddy Reed <teddy.reed@gmail.com> | 2016-07-12 05:54:26 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-07-14 22:22:44 (GMT) |
commit | b6fefa76d02efb5dab47182ae4afc9a0edc4f41e (patch) | |
tree | 631b836d2ff1b96790e249d5faacbfe63be8b985 /tools | |
parent | 19e8649e59f5632792ecccbf04a2401eddb03e44 (diff) | |
download | u-boot-b6fefa76d02efb5dab47182ae4afc9a0edc4f41e.tar.xz |
mkimage: fix missing break for -p switch
Signed-off-by: Teddy Reed <teddy.reed@gmail.com>
Reported-by: Coverity (CID: 150277)
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/mkimage.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/mkimage.c b/tools/mkimage.c index f589a41..d993958 100644 --- a/tools/mkimage.c +++ b/tools/mkimage.c @@ -232,6 +232,7 @@ static void process_args(int argc, char **argv) params.cmdname, optarg); exit(EXIT_FAILURE); } + break; case 'q': params.quiet = 1; break; |