1
0
Fork 0

tools: fix typo in tools/image-host.c

fix a typo in error printf. If FIT_CONFS_PATH is not found
print FIT_CONFS_PATH not FIT_IMAGES_PATH.

Signed-off-by: Heiko Schocher <hs@denx.de>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>
utp
Heiko Schocher 2014-08-11 11:02:17 +02:00 committed by Anatolij Gustschin
parent e49f14af13
commit 04a710a593
1 changed files with 1 additions and 1 deletions

View File

@ -689,7 +689,7 @@ int fit_add_verification_data(const char *keydir, void *keydest, void *fit,
confs_noffset = fdt_path_offset(fit, FIT_CONFS_PATH);
if (confs_noffset < 0) {
printf("Can't find images parent node '%s' (%s)\n",
FIT_IMAGES_PATH, fdt_strerror(confs_noffset));
FIT_CONFS_PATH, fdt_strerror(confs_noffset));
return -ENOENT;
}