[ros-diffs] [cfinck] 32397: Fix 64-bit build (again.. :-/)

cfinck at svn.reactos.org cfinck at svn.reactos.org
Sat Feb 16 23:49:53 CET 2008


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?rev=32397&r1=32396&r2=32397&view=diff
==============================================================================
--- 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))




More information about the Ros-diffs mailing list