Remove redundant static initialization of LowestPhysicalPage

This commit is contained in:
2026-03-03 22:42:55 +01:00
committed by CodingWorkshop Signing Team
parent 792157eab1
commit 5748e73853

View File

@@ -61,7 +61,7 @@ MMPFNLIST MM::Pfn::FreePagesList = {0, FreePageList, MAXULONG_PTR, MAXULONG_PTR}
ULONG_PTR MM::Pfn::HighestPhysicalPage;
/* Lowest physical page number */
ULONG_PTR MM::Pfn::LowestPhysicalPage = -1;
ULONG_PTR MM::Pfn::LowestPhysicalPage;
/* List containing modified pages */
MMPFNLIST MM::Pfn::ModifiedPagesList = {0, ModifiedPageList, MAXULONG_PTR, MAXULONG_PTR};