[Python-checkins] r67484 - python/trunk/Modules/_ctypes/callproc.c

christian.heimes python-checkins at python.org
Wed Dec 3 01:53:18 CET 2008


Author: christian.heimes
Date: Wed Dec  3 01:53:18 2008
New Revision: 67484

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

Modified:
   python/trunk/Modules/_ctypes/callproc.c

Modified: python/trunk/Modules/_ctypes/callproc.c
==============================================================================
--- python/trunk/Modules/_ctypes/callproc.c	(original)
+++ python/trunk/Modules/_ctypes/callproc.c	Wed Dec  3 01:53:18 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