Skip to content
Snippets Groups Projects
Commit 9ab165d8 authored by Petr Kulhavy's avatar Petr Kulhavy Committed by Tom Rini
Browse files

SPL ext: cosmetic: correct error message in spl_load_image_ext()


Correct the error message in spl_load_image_ext() when image parsing
fails. Instead of "ext4fs_read failed" print "failed to parse image
header".

Signed-off-by: default avatarPetr Kulhavy <brain@jikos.cz>
CC: Guillaume GARDET <guillaume.gardet@free.fr>
CC: Tom Rini <trini@konsulko.com>
parent 7a77e909
No related branches found
No related tags found
No related merge requests found
...@@ -50,7 +50,7 @@ int spl_load_image_ext(struct blk_desc *block_dev, ...@@ -50,7 +50,7 @@ int spl_load_image_ext(struct blk_desc *block_dev,
err = spl_parse_image_header(header); err = spl_parse_image_header(header);
if (err < 0) { if (err < 0) {
puts("spl: ext4fs_read failed\n"); puts("spl: ext: failed to parse image header\n");
goto end; goto end;
} }
......
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