- Remove all NT_ASSERT from the kernel and replace with good old ASSERT, for ease...
[reactos.git] / reactos / ntoskrnl / mm / arm / page.c
index 5d419ce..4e0bddf 100644 (file)
@@ -301,14 +301,14 @@ MmGetPageFileMapping(
     PVOID Address,
     SWAPENTRY* SwapEntry)
 {
-    NT_ASSERT(FALSE);
+    ASSERT(FALSE);
 }
 
 BOOLEAN
 NTAPI
 MmIsDisabledPage(PEPROCESS Process, PVOID Address)
 {
-    NT_ASSERT(FALSE);
+    ASSERT(FALSE);
     return FALSE;
 }
 
@@ -317,6 +317,6 @@ NTAPI
 INIT_FUNCTION
 MiInitializeSessionSpaceLayout(VOID)
 {
-    NT_ASSERT(FALSE);
+    ASSERT(FALSE);
 }