ntdll: Compile VIRTUAL_Dump only when somebody really needs it.

This commit is contained in:
Dmitry Timoshkov 2006-06-21 01:53:45 +09:00 committed by Alexandre Julliard
parent 63fd30ee5f
commit 0042ad4fc7
1 changed files with 3 additions and 1 deletions

View File

@ -196,7 +196,8 @@ static void VIRTUAL_DumpView( FILE_VIEW *view )
/***********************************************************************
* VIRTUAL_Dump
*/
void VIRTUAL_Dump(void)
#if WINE_VM_DEBUG
static void VIRTUAL_Dump(void)
{
struct file_view *view;
@ -208,6 +209,7 @@ void VIRTUAL_Dump(void)
}
RtlLeaveCriticalSection(&csVirtual);
}
#endif
/***********************************************************************