mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[FREELDR]
- #ifdef DBG -> #if DBG - #if 0 DbgDumpMemoryMap() svn path=/trunk/; revision=66193
This commit is contained in:
parent
b8d8fbdc9d
commit
880a4bf3de
1 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@ PFREELDR_MEMORY_DESCRIPTOR BiosMemoryMap;
|
|||
ULONG BiosMemoryMapEntryCount;
|
||||
SIZE_T FrLdrImageSize;
|
||||
|
||||
#ifdef DBG
|
||||
#if DBG
|
||||
typedef struct
|
||||
{
|
||||
TYPE_OF_MEMORY Type;
|
||||
|
@ -213,7 +213,7 @@ AddMemoryDescriptor(
|
|||
List[Index].MemoryType = MemoryType;
|
||||
DescriptCount++;
|
||||
|
||||
#if DBG
|
||||
#if 0 // only enable on demand!
|
||||
DbgDumpMemoryMap(List);
|
||||
#endif
|
||||
return DescriptCount;
|
||||
|
|
Loading…
Reference in a new issue