From 286cccb1debe5694f092cd7c5bbae93d127db92c Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Tue, 26 Jul 2005 00:50:17 +0000 Subject: [PATCH] - Fix compilation if redzone detection is diabled. svn path=/trunk/; revision=16729 --- reactos/ntoskrnl/mm/rpoolmgr.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/ntoskrnl/mm/rpoolmgr.h b/reactos/ntoskrnl/mm/rpoolmgr.h index 54a5fb50f96..1aa98ad21aa 100644 --- a/reactos/ntoskrnl/mm/rpoolmgr.h +++ b/reactos/ntoskrnl/mm/rpoolmgr.h @@ -328,6 +328,7 @@ RPoolInit ( void* PoolBase, rulong PoolSize, int align1, int align2, int align3 return pool; } +#if R_RZ static const char* RFormatTag ( rulong Tag, char* buf ) { @@ -341,6 +342,7 @@ RFormatTag ( rulong Tag, char* buf ) } return buf; } +#endif #if !R_RZ #define RUsedRedZoneCheck(pUsed,Addr,file,line, printzone)