diff options
author | Christian Heimes <christian@cheimes.de> | 2008-12-03 00:51:50 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-12-03 00:51:50 (GMT) |
commit | f3127b123b9ff0799bfbb0eb9f45f1c8a1c4a131 (patch) | |
tree | 89e2a4b1659859667419314b39e9fc4234100a29 | |
parent | 23f7490835a8d2255fb9e0919599f7e70da19cc3 (diff) | |
download | cpython-f3127b123b9ff0799bfbb0eb9f45f1c8a1c4a131.zip cpython-f3127b123b9ff0799bfbb0eb9f45f1c8a1c4a131.tar.gz cpython-f3127b123b9ff0799bfbb0eb9f45f1c8a1c4a131.tar.bz2 |
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 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); |