mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +00:00
Fix 64-bit build (again.. :-/)
svn path=/trunk/; revision=32397
This commit is contained in:
parent
9f5d2684e0
commit
9cd6c52bd6
1 changed files with 2 additions and 2 deletions
|
@ -1210,8 +1210,8 @@ ULONG CCabinet::ExtractFile(char* FileName)
|
|||
|
||||
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))
|
||||
|
|
Loading…
Reference in a new issue