update for HEAD-2003091401
[reactos.git] / ntoskrnl / mm / slab.c
index e2479d4..5711fe5 100644 (file)
@@ -182,7 +182,7 @@ ExAllocateSlabCache(PSLAB_CACHE Slab, BOOLEAN MayWait)
   if (Page->FirstFreeBuffer == NULL)
     {
       DPRINT1("First free page had no free buffers.\n");
-      KeBugCheck(0);
+      KEBUGCHECK(0);
     }
 
   /*
@@ -284,7 +284,7 @@ ExFreeSlabCache(PSLAB_CACHE Slab, PVOID Object)
        }
     }
   DPRINT1("Tried to free object not in cache.\n");
-  KeBugCheck(0);
+  KEBUGCHECK(0);
 }
 
 VOID