summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Porotchkin <kostap@marvell.com>2018-08-16 13:57:18 +0300
committerKostya Porotchkin <kostap@marvell.com>2018-08-16 18:06:33 +0300
commit799b09e05e29d147a9bd789ba89e73f9cf8b6f3e (patch)
tree34ae2309fa04f6e8ff889512db488b7837bf914c
parent0909d554b3d914f918e5c0ead9750e6e0767ab6e (diff)
fix: tools: Fix doimage syntax breaking secure mode build
Missing ")" in fprintf causing build break in secure boot mode. Change-Id: Ice555571683b68bb0d81479e9fc8abc4296809ac Signed-off-by: Konstantin Porotchkin <kostap@marvell.com> Reviewed-on: http://vgitil04.il.marvell.com:8080/59142 Reviewed-by: Igal Liberman <igall@marvell.com>
-rw-r--r--tools/doimage/doimage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/doimage/doimage.c b/tools/doimage/doimage.c
index 56dabbad..6fc23d50 100644
--- a/tools/doimage/doimage.c
+++ b/tools/doimage/doimage.c
@@ -768,7 +768,7 @@ int parse_sec_config_file(char *filename)
/* CSK index option */
if (config_lookup_int(&sec_cfg, "csk_key_index",
&cfg_int32) != CONFIG_TRUE) {
- fprintf(stderr, "Error obtaining \"flash_id\" element. "
+ fprintf(stderr, "Error obtaining \"flash_id\" element. ");
fprintf(stderr, "Using default - 0x0\n");
cfg_int32 = 0;
}