fix: tools: Fix doimage syntax breaking secure mode build
authorKonstantin Porotchkin <kostap@marvell.com>
Thu, 16 Aug 2018 10:57:18 +0000 (13:57 +0300)
committerKonstantin Porotchkin <kostap@marvell.com>
Mon, 3 Sep 2018 13:06:26 +0000 (16:06 +0300)
Missing ")" in fprintf causing build break in secure boot mode.

Change-Id: Ice555571683b68bb0d81479e9fc8abc4296809ac
Signed-off-by: Konstantin Porotchkin <kostap@marvell.com>
tools/doimage/doimage.c

index 56dabbad4ae1de073051939bde9e202e12649fa7..6fc23d5014e54e6fd14d9f3c5a2e4b4f9457a4a2 100644 (file)
@@ -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;
        }