Created
January 31, 2018 13:38
-
-
Save nathanrossi/ef20025d05d0d11cd864d96edbe90a73 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/tools/imagetool.c b/tools/imagetool.c | |
index 855a096d0a..b39a1e3ce6 100644 | |
--- a/tools/imagetool.c | |
+++ b/tools/imagetool.c | |
@@ -51,14 +51,15 @@ int imagetool_verify_print_header( | |
* successful | |
*/ | |
if ((*curr)->print_header) { | |
- if (!params->quiet) | |
+ if (!params->quiet) { | |
(*curr)->print_header(ptr); | |
+ printf("\n"); | |
+ } | |
} else { | |
fprintf(stderr, | |
"%s: print_header undefined for %s\n", | |
params->cmdname, (*curr)->name); | |
} | |
- break; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment