Skip to content

Instantly share code, notes, and snippets.

@nathanrossi
Created January 31, 2018 13:38
Show Gist options
  • Save nathanrossi/ef20025d05d0d11cd864d96edbe90a73 to your computer and use it in GitHub Desktop.
Save nathanrossi/ef20025d05d0d11cd864d96edbe90a73 to your computer and use it in GitHub Desktop.
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