From: Hugh McMaster Subject: [PATCH 1/2] kernel32: Remove incorrect comment Message-Id: Date: Fri, 22 May 2015 15:52:59 +1000 There are two versions of GetLargestConsoleWindowSize. The first, for i386, uses the correct comment. The second version, for non-i386, does not need the comment as it irrelevant. --- dlls/kernel32/console.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/dlls/kernel32/console.c b/dlls/kernel32/console.c index 14f1189..886e93e 100644 --- a/dlls/kernel32/console.c +++ b/dlls/kernel32/console.c @@ -1386,10 +1386,6 @@ DWORD WINAPI GetLargestConsoleWindowSize(HANDLE hConsoleOutput) /*********************************************************************** * 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__ -- 1.9.1