Author: tkreuzer
Date: Thu Apr 24 20:16:08 2008
New Revision: 33136
URL:
http://svn.reactos.org/svn/reactos?rev=33136&view=rev
Log:
ULONG -> SIZE_T for ZwAllocateVirtualMemory and MmMapViewOfSection
Modified:
trunk/reactos/subsystems/win32/win32k/misc/usrheap.c
Modified: trunk/reactos/subsystems/win32/win32k/misc/usrheap.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/mi…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/misc/usrheap.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/misc/usrheap.c [iso-8859-1] Thu Apr 24 20:16:08
2008
@@ -109,7 +109,7 @@
{
PVOID MappedView = NULL;
LARGE_INTEGER Offset;
- ULONG ViewSize = PAGE_SIZE;
+ SIZE_T ViewSize = PAGE_SIZE;
RTL_HEAP_PARAMETERS Parameters = {0};
HANDLE hHeap;
NTSTATUS Status;