[FREELDR]

- #ifdef DBG -> #if DBG
- #if 0 DbgDumpMemoryMap()

svn path=/trunk/; revision=66193
This commit is contained in:
Timo Kreuzer 2015-02-07 15:52:18 +00:00
parent b8d8fbdc9d
commit 880a4bf3de

View file

@ -34,7 +34,7 @@ PFREELDR_MEMORY_DESCRIPTOR BiosMemoryMap;
ULONG BiosMemoryMapEntryCount; ULONG BiosMemoryMapEntryCount;
SIZE_T FrLdrImageSize; SIZE_T FrLdrImageSize;
#ifdef DBG #if DBG
typedef struct typedef struct
{ {
TYPE_OF_MEMORY Type; TYPE_OF_MEMORY Type;
@ -213,7 +213,7 @@ AddMemoryDescriptor(
List[Index].MemoryType = MemoryType; List[Index].MemoryType = MemoryType;
DescriptCount++; DescriptCount++;
#if DBG #if 0 // only enable on demand!
DbgDumpMemoryMap(List); DbgDumpMemoryMap(List);
#endif #endif
return DescriptCount; return DescriptCount;