diff --git a/reactos/ntoskrnl/mm/freelist.c b/reactos/ntoskrnl/mm/freelist.c index 19c4913e455..c764a574647 100644 --- a/reactos/ntoskrnl/mm/freelist.c +++ b/reactos/ntoskrnl/mm/freelist.c @@ -718,7 +718,7 @@ MmIsUsablePage(PHYSICAL_ADDRESS PhysicalAddress) { ULONG Start = PhysicalAddress.u.LowPart / PAGE_SIZE; - DPRINT("MmGetReferenceCountPage(PhysicalAddress %x)\n", PhysicalAddress); + DPRINT("MmIsUsablePage(PhysicalAddress %x)\n", PhysicalAddress); if (PhysicalAddress.u.LowPart == 0) { diff --git a/reactos/ntoskrnl/mm/pool.c b/reactos/ntoskrnl/mm/pool.c index 5f0442a6cd2..05321286819 100644 --- a/reactos/ntoskrnl/mm/pool.c +++ b/reactos/ntoskrnl/mm/pool.c @@ -1,4 +1,4 @@ -/* $Id: pool.c,v 1.26 2003/12/30 18:52:05 fireball Exp $ +/* $Id: pool.c,v 1.27 2004/02/26 18:54:52 navaraf Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -23,11 +23,7 @@ /* FUNCTIONS ***************************************************************/ -#if defined(__GNUC__) -PVOID STDCALL STATIC -#else STATIC PVOID STDCALL -#endif EiAllocatePool(POOL_TYPE PoolType, ULONG NumberOfBytes, ULONG Tag,