Author: cfinck
Date: Sun Feb 17 01:49:52 2008
New Revision: 32397
URL:
http://svn.reactos.org/svn/reactos?rev=32397&view=rev
Log:
Fix 64-bit build (again.. :-/)
Modified:
trunk/reactos/tools/cabman/cabinet.cxx
Modified: trunk/reactos/tools/cabman/cabinet.cxx
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/cabman/cabinet.cxx?r…
==============================================================================
--- trunk/reactos/tools/cabman/cabinet.cxx (original)
+++ trunk/reactos/tools/cabman/cabinet.cxx Sun Feb 17 01:49:52 2008
@@ -1210,8 +1210,8 @@
BytesToRead = CFData.CompSize;
- DPRINT(MAX_TRACE, ("Read: (0x%X,0x%X).\n",
- (UINT)CurrentBuffer, (UINT)Buffer));
+ DPRINT(MAX_TRACE, ("Read: (0x%lX,0x%lX).\n",
+ (unsigned long)CurrentBuffer, (unsigned long)Buffer));
if (((Status = ReadBlock(CurrentBuffer, BytesToRead, &BytesRead))
!=
CAB_STATUS_SUCCESS) || (BytesToRead != BytesRead))