Discussion:
[Python-3000-checkins] r67487 - in python/branches/py3k: Modules/_ctypes/callproc.c
christian.heimes
2008-12-03 00:55:34 UTC
Permalink
Author: christian.heimes
Date: Wed Dec 3 01:55:34 2008
New Revision: 67487

Log:
Merged revisions 67484 via svnmerge from
svn+ssh://pythondev at svn.python.org/python/trunk

........
r67484 | christian.heimes | 2008-12-03 01:53:18 +0100 (Wed, 03 Dec 2008) | 2 lines

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


Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Modules/_ctypes/callproc.c

Modified: python/branches/py3k/Modules/_ctypes/callproc.c
==============================================================================
--- python/branches/py3k/Modules/_ctypes/callproc.c (original)
+++ python/branches/py3k/Modules/_ctypes/callproc.c Wed Dec 3 01:55:34 2008
@@ -216,7 +216,7 @@
n = FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
NULL,
code,
- MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
+ MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), /* Default language */
(LPWSTR) &lpMsgBuf,
0,
NULL);

Loading...