mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 19:04:38 +00:00
arm: imx: parse-container: add some missing end of line
Some printf() have strings that doesn't terminate with end of line and make the output hard to read. Signed-off-by: Clément Péron <peron.clem@gmail.com> Reviewed-by: Fabio Estevam <festevam@denx.de> Reviewed-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
parent
129f5102d2
commit
1697638e71
1 changed files with 2 additions and 2 deletions
|
@ -142,12 +142,12 @@ static int read_auth_container(struct spl_image_info *spl_image,
|
|||
return -EIO;
|
||||
|
||||
if (container->tag != 0x87 && container->version != 0x0) {
|
||||
printf("Wrong container header");
|
||||
printf("Wrong container header\n");
|
||||
return -ENOENT;
|
||||
}
|
||||
|
||||
if (!container->num_images) {
|
||||
printf("Wrong container, no image found");
|
||||
printf("Wrong container, no image found\n");
|
||||
return -ENOENT;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue