X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib-python/blobdiff_plain/5b1830f325c55c70d65fd020f08dd958493e528d..78911cdb6782ddccef6de3cc913b714e10d2fc14:/atom-base.c diff --git a/atom-base.c b/atom-base.c index 68ab64b..f57eaee 100644 --- a/atom-base.c +++ b/atom-base.c @@ -66,7 +66,7 @@ PyObject *atom_pyintern(PyObject *x) { atom *a; const void *p; - int n; + Py_ssize_t n; if (ATOM_PYCHECK(x)) RETURN_OBJ(x); @@ -131,7 +131,7 @@ static PyObject *atom_pyrepr(PyObject *me) PyObject *s, *sr = 0; PyObject *rc = 0; char *p; - int n; + Py_ssize_t n; dstr d = DSTR_INIT; if ((s = aget_name(me, 0)) == 0 ||