Skip to content
Snippets Groups Projects
Commit 9c70237f authored by Sven Roederer's avatar Sven Roederer Committed by Tom Rini
Browse files

tools/fitimage: add missing linebreak for some messages


Add a linebreak to two messages and fix punctuation.

Signed-off-by: default avatarSven Roederer <devel-sven@geroedel.de>
parent 33b9027c
No related branches found
No related tags found
No related merge requests found
......@@ -524,7 +524,7 @@ static int fit_extract_data(struct image_tool_params *params, const char *fname)
/* Check if an offset for the external data was set. */
if (params->external_offset > 0) {
if (params->external_offset < new_size) {
debug("External offset %x overlaps FIT length %x",
debug("External offset %x overlaps FIT length %x\n",
params->external_offset, new_size);
ret = -EINVAL;
goto err;
......@@ -737,7 +737,7 @@ static int fit_handle_file(struct image_tool_params *params)
if (strlen (params->imagefile) +
strlen (MKIMAGE_TMPFILE_SUFFIX) + 1 > sizeof (tmpfile)) {
fprintf (stderr, "%s: Image file name (%s) too long, "
"can't create tmpfile",
"can't create tmpfile.\n",
params->imagefile, params->cmdname);
return (EXIT_FAILURE);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment