[BOOTLIB]: Fix GCC build. Maybe I should stop using MSVC.
authorAlex Ionescu <aionescu@gmail.com>
Sun, 5 Feb 2017 20:52:00 +0000 (20:52 +0000)
committerAlex Ionescu <aionescu@gmail.com>
Sun, 5 Feb 2017 20:52:00 +0000 (20:52 +0000)
svn path=/trunk/; revision=73713

reactos/boot/environ/lib/mm/pagealloc.c

index 0444ba9..d26853d 100644 (file)
@@ -652,7 +652,7 @@ MmPapFreePages (
     }
 
     /* Free it from there */
-    PhysicalAddress.QuadPart = (ULONGLONG)Address;
+    PhysicalAddress.QuadPart = (ULONG_PTR)Address;
     return MmPapFreePhysicalPages(WhichList, 0, PhysicalAddress);
 }