mirror of
https://xff.cz/git/u-boot/
synced 2025-11-02 03:17:29 +01:00
lzma: fix printf warnings
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>
This commit is contained in:
committed by
Anatolij Gustschin
parent
127e19e28d
commit
f3e6110a10
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user