[NTOSKRNL]
authorAmine Khaldi <amine.khaldi@reactos.org>
Sun, 2 Mar 2014 12:27:42 +0000 (12:27 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Sun, 2 Mar 2014 12:27:42 +0000 (12:27 +0000)
* Move the trace call before the debug print.

svn path=/trunk/; revision=62376

reactos/ntoskrnl/mm/ARM3/virtual.c

index 09e0f68..4630f52 100644 (file)
@@ -5299,8 +5299,8 @@ MmGetPhysicalAddress(PVOID Address)
         }
     }
 
-    DPRINT1("MM:MmGetPhysicalAddressFailed base address was %p\n", Address);
     KeRosDumpStackFrames(NULL, 20);
+    DPRINT1("MM:MmGetPhysicalAddressFailed base address was %p\n", Address);
     PhysicalAddress.QuadPart = 0;
     return PhysicalAddress;
 }