Module: wine Branch: master Commit: 43d07203358f182e9339a89b9f0b352b78255627 URL: http://source.winehq.org/git/wine.git/?a=commit;h=43d07203358f182e9339a89b9f... Author: Gerald Pfeifer <gerald(a)pfeifer.com> Date: Mon Dec 7 16:07:29 2009 +0100 ntdll: Guard debugging code by #ifdef instead of plain #if. --- dlls/ntdll/virtual.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/ntdll/virtual.c b/dlls/ntdll/virtual.c index f568eee..9731069 100644 --- a/dlls/ntdll/virtual.c +++ b/dlls/ntdll/virtual.c @@ -230,7 +230,7 @@ static void VIRTUAL_DumpView( FILE_VIEW *view ) /*********************************************************************** * VIRTUAL_Dump */ -#if WINE_VM_DEBUG +#ifdef WINE_VM_DEBUG static void VIRTUAL_Dump(void) { sigset_t sigset;