summaryrefslogtreecommitdiff
path: root/Python/modsupport.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-02-16 14:37:16 +0000
committerMartin v. Löwis <martin@v.loewis.de>2006-02-16 14:37:16 +0000
commitea615bf5d1d108608a0e287b49cf062887e09a03 (patch)
tree63690c5876f149addb2f90474f80a8ed02c41730 /Python/modsupport.c
parente035b907ea2beef5cebb34c8cdee3af0229ead7b (diff)
downloadcpython-ea615bf5d1d108608a0e287b49cf062887e09a03.tar.gz
Use Py_ssize_t to count the
Diffstat (limited to 'Python/modsupport.c')
-rw-r--r--Python/modsupport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/modsupport.c b/Python/modsupport.c
index f92fc341a8..2356a9e57e 100644
--- a/Python/modsupport.c
+++ b/Python/modsupport.c
@@ -315,7 +315,7 @@ do_mkvalue(const char **p_format, va_list *p_va)
case 'n':
#if SIZEOF_SIZE_T!=SIZEOF_LONG
- return PyLong_FromSsize_t(va_arg(*p_va, Py_Ssize_t));
+ return PyInt_FromSsize_t(va_arg(*p_va, Py_ssize_t));
#endif
/* Fall through from 'n' to 'l' if Py_ssize_t is long */
case 'l':