mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 21:21:37 +00:00
sandbox: Fix up the debug message for the image filename
This currently prints out the wrong filename. Fix it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
2e2a2a5d4f
commit
6b5e420137
1 changed files with 1 additions and 1 deletions
|
@ -668,7 +668,7 @@ static int os_jump_to_file(const char *fname)
|
|||
os_free(argv);
|
||||
if (err) {
|
||||
perror("Unable to run image");
|
||||
printf("Image filename '%s'\n", mem_fname);
|
||||
printf("Image filename '%s'\n", fname);
|
||||
return err;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue