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;
|
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;
|
||||||
|
|
Loading…
Reference in a new issue