summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-12-03 00:53:18 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-12-03 00:53:18 (GMT)
commitdee3c9c6065d201b0ffcfaa6372f75a3dee33383 (patch)
treefc0a84274fe606ad6fa472cbeb8628ec9b143f09 /Modules
parentcb948f12c9c9652fb44604d21ac6ef1d7645e05c (diff)
downloadcpython-dee3c9c6065d201b0ffcfaa6372f75a3dee33383.zip
cpython-dee3c9c6065d201b0ffcfaa6372f75a3dee33383.tar.gz
cpython-dee3c9c6065d201b0ffcfaa6372f75a3dee33383.tar.bz2
Issue #4025 again
Converted a C99 style comment to a C89 style comment (found by MAL).
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_ctypes/callproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c
index 01ba8a0..7f7d641 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);