From: Sean Anderson Date: Sat, 14 Oct 2023 20:47:41 +0000 (-0400) Subject: arm: imx: Add newlines after error messages X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=14399638c6146beb1fac411b981659e136efef0e;p=u-boot.git arm: imx: Add newlines after error messages These error messages are missing newlines. Add them. Fixes: 6e81ca220e0 ("imx: parse-container: Use malloc for container processing") Signed-off-by: Sean Anderson --- diff --git a/arch/arm/mach-imx/parse-container.c b/arch/arm/mach-imx/parse-container.c index d7275a58c1..c5df78d1c5 100644 --- a/arch/arm/mach-imx/parse-container.c +++ b/arch/arm/mach-imx/parse-container.c @@ -85,13 +85,13 @@ static int read_auth_container(struct spl_image_info *spl_image, } if (container->tag != 0x87 && container->version != 0x0) { - printf("Wrong container header"); + printf("Wrong container header\n"); ret = -ENOENT; goto end; } if (!container->num_images) { - printf("Wrong container, no image found"); + printf("Wrong container, no image found\n"); ret = -ENOENT; goto end; }