]> git.karo-electronics.de Git - karo-tx-uboot.git/commitdiff
lzmadec: Use the same type as the lzma call
authorSimon Glass <sjg@chromium.org>
Fri, 22 Jul 2016 15:22:46 +0000 (09:22 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 25 Jul 2016 16:05:54 +0000 (12:05 -0400)
With sandbox on 32-bit the size_t type can be a little inconsistent. Use
the same type as the caller expects to avoid a compiler warning.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
cmd/lzmadec.c

index 1ad9ed6ce96a5c37f32b2eb2f702cfc1787232bb..c78df825e84b6c6ea2a0300142d88de75f5fda81 100644 (file)
@@ -20,7 +20,7 @@
 static int do_lzmadec(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
 {
        unsigned long src, dst;
-       unsigned long src_len = ~0UL, dst_len = ~0UL;
+       SizeT src_len = ~0UL, dst_len = ~0UL;
        int ret;
 
        switch (argc) {
@@ -40,7 +40,8 @@ static int do_lzmadec(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
 
        if (ret != SZ_OK)
                return 1;
-       printf("Uncompressed size: %ld = 0x%lX\n", src_len, src_len);
+       printf("Uncompressed size: %ld = %#lX\n", (ulong)src_len,
+              (ulong)src_len);
        setenv_hex("filesize", src_len);
 
        return 0;