From: Christian Heimes Date: Wed, 3 Dec 2008 00:51:50 +0000 (+0000) Subject: Issue #4025 again X-Git-Tag: v2.6.1~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f3127b123b9ff0799bfbb0eb9f45f1c8a1c4a131;p=thirdparty%2FPython%2Fcpython.git Issue #4025 again Converted a C99 style comment to a C89 style comment (found by MAL). --- diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c index 01ba8a00c2d9..7f7d641fe2cd 100644 --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -221,7 +221,7 @@ static TCHAR *FormatError(DWORD code) n = FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, NULL, code, - MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language + MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), /* Default language */ (LPTSTR) &lpMsgBuf, 0, NULL);