summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes/libffi
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-10-02 19:56:01 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-10-02 19:56:01 (GMT)
commit1a8501c64837368a6973ff3f9850b652888c281a (patch)
tree0884a11d8b60a9d6db6262ab91b5e70e00934368 /Modules/_ctypes/libffi
parentc472532c0cd056a23f4d50bd9a03d0fdea856a0a (diff)
downloadcpython-1a8501c64837368a6973ff3f9850b652888c281a.zip
cpython-1a8501c64837368a6973ff3f9850b652888c281a.tar.gz
cpython-1a8501c64837368a6973ff3f9850b652888c281a.tar.bz2
Merged revisions 66748 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r66748 | christian.heimes | 2008-10-02 21:47:50 +0200 (Thu, 02 Oct 2008) | 1 line Fixed a couple more C99 comments and one occurence of inline. ........ + another // comment in bytesobject
Diffstat (limited to 'Modules/_ctypes/libffi')
-rw-r--r--Modules/_ctypes/libffi/src/x86/ffi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_ctypes/libffi/src/x86/ffi.c b/Modules/_ctypes/libffi/src/x86/ffi.c
index 767effb..60d7f47 100644
--- a/Modules/_ctypes/libffi/src/x86/ffi.c
+++ b/Modules/_ctypes/libffi/src/x86/ffi.c
@@ -388,10 +388,10 @@ ffi_prep_raw_closure_loc (ffi_raw_closure* closure,
return FFI_BAD_ABI;
}
- // we currently don't support certain kinds of arguments for raw
+ /* we currently don't support certain kinds of arguments for raw
// closures. This should be implemented by a separate assembly language
// routine, since it would require argument processing, something we
- // don't do now for performance.
+ // don't do now for performance. */
for (i = cif->nargs-1; i >= 0; i--)
{