[Python-checkins] r67483 - python/branches/release26-maint/Modules/_ctypes/callproc.c

christian.heimes python-checkins at python.org
Wed Dec 3 01:51:50 CET 2008


Author: christian.heimes
Date: Wed Dec  3 01:51:50 2008
New Revision: 67483

Log:
Issue #4025 again
Converted a C99 style comment to a C89 style comment (found by MAL).

Modified:
   python/branches/release26-maint/Modules/_ctypes/callproc.c

Modified: python/branches/release26-maint/Modules/_ctypes/callproc.c
==============================================================================
--- python/branches/release26-maint/Modules/_ctypes/callproc.c	(original)
+++ python/branches/release26-maint/Modules/_ctypes/callproc.c	Wed Dec  3 01:51:50 2008
@@ -221,7 +221,7 @@
 	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);


More information about the Python-checkins mailing list