From 66974e5502c5d094286455cf23f51ca62c5b1220 Mon Sep 17 00:00:00 2001 From: Hugh McMaster Date: Wed, 6 Jan 2016 18:27:59 +1100 Subject: [PATCH] kernel32: Remove incorrect comment from !i386 version of GetLargestConsoleWindowSize. Signed-off-by: Hugh McMaster Signed-off-by: Alexandre Julliard --- dlls/kernel32/console.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/dlls/kernel32/console.c b/dlls/kernel32/console.c index 85e4ba8f420..5db37a01d96 100644 --- a/dlls/kernel32/console.c +++ b/dlls/kernel32/console.c @@ -1398,19 +1398,9 @@ DWORD WINAPI GetLargestConsoleWindowSize(HANDLE hConsoleOutput) TRACE("(%p), returning %dx%d (%x)\n", hConsoleOutput, x.c.X, x.c.Y, x.w); return x.w; } -#endif /* defined(__i386__) */ +#else -/*********************************************************************** - * GetLargestConsoleWindowSize (KERNEL32.@) - * - * NOTE - * This should return a COORD, but calling convention for returning - * structures is different between Windows and gcc on i386. - * - * VERSION: [!i386] - */ -#ifndef __i386__ COORD WINAPI GetLargestConsoleWindowSize(HANDLE hConsoleOutput) { COORD c;