From 626e3e72953000ffb73ccd792e93f5faa050b594 Mon Sep 17 00:00:00 2001 From: Sir Richard Date: Sun, 27 Jun 2010 19:55:36 +0000 Subject: [PATCH] [NTOS]: Warn only once about MmLockPageableImageSection being unimplemented. svn path=/trunk/; revision=47864 --- reactos/ntoskrnl/mm/ARM3/drvmgmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/mm/ARM3/drvmgmt.c b/reactos/ntoskrnl/mm/ARM3/drvmgmt.c index ad85c479ca5..265a771eee2 100644 --- a/reactos/ntoskrnl/mm/ARM3/drvmgmt.c +++ b/reactos/ntoskrnl/mm/ARM3/drvmgmt.c @@ -60,7 +60,7 @@ MmLockPageableDataSection(IN PVOID AddressWithinSection) // // We should just find the section and call MmLockPageableSectionByHandle // - UNIMPLEMENTED; + static BOOLEAN Warn; if (!Warn++) UNIMPLEMENTED; return AddressWithinSection; }