fixed warning

svn path=/trunk/; revision=6647
This commit is contained in:
Thomas Bluemel 2003-11-14 23:04:18 +00:00
parent 99d650fdb4
commit 1b844b220b

View file

@ -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);