summaryrefslogtreecommitdiff
path: root/tools/image-host.c
diff options
context:
space:
mode:
authorHeiko Schocher <hs@denx.de>2014-08-11 09:02:17 (GMT)
committerAnatolij Gustschin <agust@denx.de>2014-08-14 09:20:01 (GMT)
commit04a710a593138a0a3cfe88cd3a0ba036973a9fda (patch)
treeceeb2824ec5edeebd1e4fbfd5a7726e3d5fa2d16 /tools/image-host.c
parente49f14af1349eef94e41b636320bbfcace7403b5 (diff)
downloadu-boot-fsl-qoriq-04a710a593138a0a3cfe88cd3a0ba036973a9fda.tar.xz
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>
Diffstat (limited to 'tools/image-host.c')
-rw-r--r--tools/image-host.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/image-host.c b/tools/image-host.c
index 0eff720..7effb6c 100644
--- a/tools/image-host.c
+++ b/tools/image-host.c
@@ -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;
}