diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-01-04 12:59:15 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-01-04 12:59:15 (GMT) |
commit | 0fcab4a3ed5e39769609b60d6179c4c801e45985 (patch) | |
tree | fc5592e351ed18a96d7e94aeb2ced52c0ba2fd0d /Modules/_ctypes | |
parent | 6ab8e8298eba1d52debc53d6e6a38d419bb255c0 (diff) | |
download | cpython-0fcab4a3ed5e39769609b60d6179c4c801e45985.zip cpython-0fcab4a3ed5e39769609b60d6179c4c801e45985.tar.gz cpython-0fcab4a3ed5e39769609b60d6179c4c801e45985.tar.bz2 |
Issue #9566: use Py_ssize_t instead of int
Diffstat (limited to 'Modules/_ctypes')
-rw-r--r-- | Modules/_ctypes/_ctypes.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c index ed7c66a..ff35862 100644 --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -3925,14 +3925,14 @@ PyTypeObject PyCFuncPtr_Type = { Returns -1 on error, or the index of next argument on success. */ -static int +static Py_ssize_t _init_pos_args(PyObject *self, PyTypeObject *type, PyObject *args, PyObject *kwds, - int index) + Py_ssize_t index) { StgDictObject *dict; PyObject *fields; - int i; + Py_ssize_t i; if (PyType_stgdict((PyObject *)type->tp_base)) { index = _init_pos_args(self, type->tp_base, |