Commit 6d55ef1a authored by Konstantin Porotchkin's avatar Konstantin Porotchkin
Browse files

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: default avatarKonstantin Porotchkin <kostap@marvell.com>
parent 58671490
......@@ -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;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment