]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
tools: spkgimage: correct printf specifier
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Tue, 4 Jul 2023 20:18:09 +0000 (22:18 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 5 Jul 2023 20:14:54 +0000 (16:14 -0400)
Compiling on armv7 results in:

tools/renesas_spkgimage.c: In function ‘spkgimage_parse_config_line’:
tools/renesas_spkgimage.c:76:66: warning: format ‘%ld’ expects
argument of type ‘long int’, but argument 3 has type ‘size_t’
{aka ‘unsigned int’} [-Wformat=]
   76 |         "config error: unknown keyword on line %ld\n",
      |                                                ~~^
      |                                                  |
      |                                                  long int
      |                                                %d
   77 |         line_num);
      |         ~~~~~~~~
      |         |
      |         size_t {aka unsigned int}

The correct printf specifier for size_t is '%zu'.

Fixes: afdfcb11f97c ("tools: spkgimage: add Renesas SPKG format")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
tools/renesas_spkgimage.c

index fa0a468cc47d9898a7422c7cd926e50b916f67f0..5cd81dd5bfa8525c0ffe35425c75c85cf52d23cf 100644 (file)
@@ -73,7 +73,7 @@ static int spkgimage_parse_config_line(char *line, size_t line_num)
                conf.padding = check_range(name, value, 1, INT_MAX);
        } else {
                fprintf(stderr,
-                       "config error: unknown keyword on line %ld\n",
+                       "config error: unknown keyword on line %zu\n",
                        line_num);
                return -EINVAL;
        }