Skip to content
Snippets Groups Projects
Commit d9f1b00b authored by Simon Glass's avatar Simon Glass Committed by Tom Rini
Browse files

sandbox: Fix a comment in os_find_u_boot()


Fix a missing dot in a comment, since '..' is confusing.

Signed-off-by: Simon Glass's avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarMattijs Korpershoek <mkorpershoek@baylibre.com>
parent 46ef4e82
No related branches found
No related tags found
No related merge requests found
......@@ -964,7 +964,7 @@ int os_find_u_boot(char *fname, int maxlen, bool use_img,
p = strstr(fname, subdir);
if (p) {
if (*next_prefix)
/* e.g. ".../tpl/u-boot-spl" to "../spl/u-boot-spl" */
/* e.g. ".../tpl/u-boot-spl" to ".../spl/u-boot-spl" */
memcpy(p + 1, next_prefix, strlen(next_prefix));
else
/* e.g. ".../spl/u-boot" to ".../u-boot" */
......
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