commit | 23eabbb93a1da3894d4616594effdb8a18cb121b | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Fri Nov 23 21:29:24 2018 -0700 |
committer | Simon Glass <sjg@chromium.org> | Wed Dec 05 06:01:34 2018 -0700 |
tree | c2d28c89c1fcf8408c10fcda09243468613849eb | |
parent | 73a258c9a38a027a0096c7ad7e5fca601a1b1ff2 [diff] [blame] |
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>
diff --git a/arch/sandbox/cpu/os.c b/arch/sandbox/cpu/os.c index 62e05c5..a8d01e4 100644 --- a/arch/sandbox/cpu/os.c +++ b/arch/sandbox/cpu/os.c
@@ -668,7 +668,7 @@ 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; }