From 970902f3f9b85b7758f353b275f5d659f26485ac Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Tue, 24 Mar 2026 23:07:06 +0100 Subject: [PATCH] Rephrase comments for consistency --- xtoskrnl/mm/alloc.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xtoskrnl/mm/alloc.cc b/xtoskrnl/mm/alloc.cc index 28ad678..ae50360 100644 --- a/xtoskrnl/mm/alloc.cc +++ b/xtoskrnl/mm/alloc.cc @@ -1359,7 +1359,7 @@ MM::Allocator::InitializeAllocationsTracking(VOID) /* Check if the allocation failed duefor a single entry */ if(AllocationsTrackingTableSize == 1) { - /* Failed to initialize the pool tracker, kernel panic */ + /* Failed to initialize the pool tracker, raise kernel panic */ KE::Crash::Panic(0x41, TableSize, (ULONG_PTR)~0, (ULONG_PTR)~0, (ULONG_PTR)~0); } @@ -1469,7 +1469,7 @@ MM::Allocator::InitializeBigAllocationsTracking(VOID) /* Check if the allocation failed duefor a single entry */ if(BigAllocationsTrackingTableSize == 1) { - /* Failed to initialize the pool tracker, kernel panic */ + /* Failed to initialize the pool tracker, raise kernel panic */ KE::Crash::Panic(0x41, TableSize, (ULONG_PTR)~0, (ULONG_PTR)~0, (ULONG_PTR)~0); }