diff options
| author | Christian Heimes <christian@cheimes.de> | 2008-12-03 00:55:34 (GMT) |
|---|---|---|
| committer | Christian Heimes <christian@cheimes.de> | 2008-12-03 00:55:34 (GMT) |
| commit | d74a1dc50149fa69bd6d974389257168e7af919b (patch) | |
| tree | 166979b1fa3dd973418607181b7f83abe91ea571 | |
| parent | 7396135b90ebf0f1bf1cf0f9913429a5e0580bcd (diff) | |
| download | cpython-d74a1dc50149fa69bd6d974389257168e7af919b.zip cpython-d74a1dc50149fa69bd6d974389257168e7af919b.tar.gz cpython-d74a1dc50149fa69bd6d974389257168e7af919b.tar.bz2 | |
Merged revisions 67484 via svnmerge from
svn+ssh://pythondev@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).
........
| -rw-r--r-- | Modules/_ctypes/callproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c index b85eef9..0f9f511 100644 --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -216,7 +216,7 @@ static WCHAR *FormatError(DWORD code) 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); |
