summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorKonstantin Porotchkin <kostap@marvell.com>2018-08-16 13:57:18 +0300
committerKonstantin Porotchkin <kostap@marvell.com>2018-09-03 16:06:26 +0300
commit6d55ef1a24dc92a3b737aaa02141f550caaace06 (patch)
treed6296153fd18daa2651f1c5bedec79bb18e57c4b /tools
parent586714901a75a56d1ac6836f31b7ff86b339a960 (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>
Diffstat (limited to 'tools')
-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;
}