mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
- Epic Fail? Fix another math bug...it actually works now!
- Fix another wrong debug print. svn path=/trunk/; revision=34662
This commit is contained in:
@@ -296,8 +296,8 @@ RamdiskMapPages(IN PRAMDISK_DRIVE_EXTENSION DeviceExtension,
|
||||
//
|
||||
// Convert to pages
|
||||
//
|
||||
ActualPages.QuadPart = BYTES_TO_PAGES(ActualOffset.QuadPart);
|
||||
DPRINT1("Offset in pages is: %d\n", ActualOffset);
|
||||
ActualPages.QuadPart = ActualOffset.QuadPart >> PAGE_SHIFT;
|
||||
DPRINT1("Offset in pages is: %I64x\n", ActualPages);
|
||||
|
||||
//
|
||||
// Now add the base page
|
||||
|
||||
Reference in New Issue
Block a user