PATCH dlls/ntdll/virtual.cfor #ifdef vs #if

Gerald Pfeifer gerald at pfeifer.com
Mon Dec 7 09:07:29 CST 2009


This is along the lines of some patches that went in in November;
one to go in all of Wine.

Gerald

ChangeLog:
Guard debugging code by #ifdef instead of plain #if.

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;



More information about the wine-patches mailing list