mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00
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>
This commit is contained in:
parent
586714901a
commit
6d55ef1a24
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue