diff options
| author | Marek Vasut <marek.vasut@gmail.com> | 2011-10-24 23:41:36 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-10-27 23:54:08 +0200 | 
| commit | dd0598420c9531ae67db551bdaf46f9a3c42fbc1 (patch) | |
| tree | 98bb0dc47ee49b9bd4268b84e27d83fafe67c5a6 /lib/lzma/LzmaTools.c | |
| parent | 78459123d94b08b434482b9a4916404901bc9232 (diff) | |
| download | olio-uboot-2014.01-dd0598420c9531ae67db551bdaf46f9a3c42fbc1.tar.xz olio-uboot-2014.01-dd0598420c9531ae67db551bdaf46f9a3c42fbc1.zip | |
GCC4.6: Squash warnings in LzmaTools.c
LzmaTools.c: In function 'lzmaBuffToBuffDecompress':
LzmaTools.c:70:5: warning: format '%lx' expects type 'long unsigned int', but
argument 2 has type 'unsigned char *'
LzmaTools.c:71:5: warning: format '%lx' expects type 'long unsigned int', but
argument 2 has type 'unsigned char *'
LzmaTools.c:72:5: warning: format '%lx' expects type 'long unsigned int', but
argument 2 has type 'unsigned char *'
LzmaTools.c:73:5: warning: format '%lx' expects type 'long unsigned int', but
argument 2 has type 'unsigned char *'
LzmaTools.c:74:5: warning: format '%lx' expects type 'long unsigned int', but
argument 2 has type 'unsigned char *'
LzmaTools.c:110:5: warning: format '%lx' expects type 'long unsigned int', but
argument 2 has type 'SizeT'
LzmaTools.c:111:5: warning: format '%lx' expects type 'long unsigned int', but
argument 2 has type 'SizeT'
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Simon Glass <sjg@chromium.org>
Cc: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'lib/lzma/LzmaTools.c')
| -rw-r--r-- | lib/lzma/LzmaTools.c | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/lib/lzma/LzmaTools.c b/lib/lzma/LzmaTools.c index 8860bfbf3..2eafad246 100644 --- a/lib/lzma/LzmaTools.c +++ b/lib/lzma/LzmaTools.c @@ -67,11 +67,11 @@ int lzmaBuffToBuffDecompress (unsigned char *outStream, SizeT *uncompressedSize,      ELzmaStatus state;      SizeT compressedSize = (SizeT)(length - LZMA_PROPS_SIZE); -    debug ("LZMA: Image address............... 0x%lx\n", inStream); -    debug ("LZMA: Properties address.......... 0x%lx\n", inStream + LZMA_PROPERTIES_OFFSET); -    debug ("LZMA: Uncompressed size address... 0x%lx\n", inStream + LZMA_SIZE_OFFSET); -    debug ("LZMA: Compressed data address..... 0x%lx\n", inStream + LZMA_DATA_OFFSET); -    debug ("LZMA: Destination address......... 0x%lx\n", outStream); +    debug ("LZMA: Image address............... 0x%p\n", inStream); +    debug ("LZMA: Properties address.......... 0x%p\n", inStream + LZMA_PROPERTIES_OFFSET); +    debug ("LZMA: Uncompressed size address... 0x%p\n", inStream + LZMA_SIZE_OFFSET); +    debug ("LZMA: Compressed data address..... 0x%p\n", inStream + LZMA_DATA_OFFSET); +    debug ("LZMA: Destination address......... 0x%p\n", outStream);      memset(&state, 0, sizeof(state)); @@ -107,8 +107,8 @@ int lzmaBuffToBuffDecompress (unsigned char *outStream, SizeT *uncompressedSize,          }      } -    debug ("LZMA: Uncompresed size............ 0x%lx\n", outSizeFull); -    debug ("LZMA: Compresed size.............. 0x%lx\n", compressedSize); +    debug ("LZMA: Uncompresed size............ 0x%x\n", outSizeFull); +    debug ("LZMA: Compresed size.............. 0x%x\n", compressedSize);      g_Alloc.Alloc = SzAlloc;      g_Alloc.Free = SzFree; |