X-Git-Url: https://git.distorted.org.uk/~mdw/mLib-python/blobdiff_plain/3655f952feb7cd89371dd65fb78e1435e50f9bcc..ad52a33f047ab69cf0daef7b9a84a701ae54d41e:/atom-base.c?ds=inline diff --git a/atom-base.c b/atom-base.c index e1e38f9..f57eaee 100644 --- a/atom-base.c +++ b/atom-base.c @@ -1,7 +1,5 @@ /* -*-c-*- * - * $Id$ - * * Atom stuff * * (c) 2005 Straylight/Edgeware @@ -68,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); @@ -133,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 ||