[PATCH 2/2] kernel32: Correct #endif comments

Hugh McMaster hugh.mcmaster at outlook.com
Fri May 22 00:53:00 CDT 2015


Both #endif comments do not match their #ifndef counterparts.
---
 dlls/kernel32/console.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/kernel32/console.c b/dlls/kernel32/console.c
index 886e93e..6474729 100644
--- a/dlls/kernel32/console.c
+++ b/dlls/kernel32/console.c
@@ -1397,7 +1397,7 @@ COORD WINAPI GetLargestConsoleWindowSize(HANDLE hConsoleOutput)
     TRACE("(%p), returning %dx%d\n", hConsoleOutput, c.X, c.Y);
     return c;
 }
-#endif /* defined(__i386__) */
+#endif /* !defined(__i386__) */
 
 static WCHAR*	S_EditString /* = NULL */;
 static unsigned S_EditStrPos /* = 0 */;
@@ -3265,4 +3265,4 @@ COORD WINAPI GetConsoleFontSize(HANDLE hConsole, DWORD font)
      FIXME(": (%p, %d) stub!\n", hConsole, font);
     return c;
 }
-#endif /* defined(__i386__) */
+#endif /* !defined(__i386__) */
-- 
1.9.1




More information about the wine-patches mailing list