From 1b844b220b52485f41f36a0fbd8901aa2bbc5a65 Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Fri, 14 Nov 2003 23:04:18 +0000 Subject: [PATCH] fixed warning svn path=/trunk/; revision=6647 --- reactos/tools/cabman/mszip.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/tools/cabman/mszip.cxx b/reactos/tools/cabman/mszip.cxx index d1ae6786981..7f93086d1bc 100755 --- a/reactos/tools/cabman/mszip.cxx +++ b/reactos/tools/cabman/mszip.cxx @@ -65,7 +65,7 @@ unsigned long CMSZipCodec::Compress(void* OutputBuffer, { unsigned short* Magic; - DPRINT(MAX_TRACE, ("InputLength (%d).\n", InputLength)); + DPRINT(MAX_TRACE, ("InputLength (%lu).\n", InputLength)); Magic = (unsigned short*)OutputBuffer; *Magic = MSZIP_MAGIC; @@ -122,7 +122,7 @@ unsigned long CMSZipCodec::Uncompress(void* OutputBuffer, { unsigned short Magic; - DPRINT(MAX_TRACE, ("InputLength (%d).\n", InputLength)); + DPRINT(MAX_TRACE, ("InputLength (%lu).\n", InputLength)); Magic = *((unsigned short*)InputBuffer);