diff mbox

[U-Boot] lzma: fix printf warnings

Message ID 1326014075-11050-1-git-send-email-vapier@gentoo.org
State Accepted
Commit f3e6110a10b694b3beb1ba7704fb7632cc371844
Delegated to: Anatolij Gustschin
Headers show

Commit Message

Mike Frysinger Jan. 8, 2012, 9:14 a.m. UTC
Fix size_t printf format warnings:

LzmaTools.c: In function 'lzmaBuffToBuffDecompress':
LzmaTools.c:110:5: warning: format '%x' expects type 'unsigned int',
                            but argument 2 has type 'SizeT'
LzmaTools.c:111:5: warning: format '%x' expects type 'unsigned int',
                            but argument 2 has type 'SizeT'

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
 lib/lzma/LzmaTools.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

Comments

Anatolij Gustschin March 28, 2012, 8:14 a.m. UTC | #1
Hi Mike,

On Sun,  8 Jan 2012 04:14:35 -0500
Mike Frysinger <vapier@gentoo.org> wrote:

> Fix size_t printf format warnings:
> 
> LzmaTools.c: In function 'lzmaBuffToBuffDecompress':
> LzmaTools.c:110:5: warning: format '%x' expects type 'unsigned int',
>                             but argument 2 has type 'SizeT'
> LzmaTools.c:111:5: warning: format '%x' expects type 'unsigned int',
>                             but argument 2 has type 'SizeT'
> 
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
> ---
>  lib/lzma/LzmaTools.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)

Applied to u-boot-staging/agust@denx.de, thanks.

Anatolij
diff mbox

Patch

diff --git a/lib/lzma/LzmaTools.c b/lib/lzma/LzmaTools.c
index 2eafad2..28a8aef 100644
--- a/lib/lzma/LzmaTools.c
+++ b/lib/lzma/LzmaTools.c
@@ -107,8 +107,8 @@  int lzmaBuffToBuffDecompress (unsigned char *outStream, SizeT *uncompressedSize,
         }
     }
 
-    debug ("LZMA: Uncompresed size............ 0x%x\n", outSizeFull);
-    debug ("LZMA: Compresed size.............. 0x%x\n", compressedSize);
+    debug("LZMA: Uncompresed size............ 0x%zx\n", outSizeFull);
+    debug("LZMA: Compresed size.............. 0x%zx\n", compressedSize);
 
     g_Alloc.Alloc = SzAlloc;
     g_Alloc.Free = SzFree;