From: Mark Wooding Date: Mon, 6 Apr 2020 02:34:24 +0000 (+0000) Subject: ec.c: Fix length type which should have been `Py_ssize_t'. X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb-python/commitdiff_plain/8ebf420c2d64a7fc9461b6c811d7ea6c309d9d06?hp=553d59fec08fd9102b21fd0dc83ba708862a6090 ec.c: Fix length type which should have been `Py_ssize_t'. --- diff --git a/ec.c b/ec.c index 361bbf5..fe5f6fb 100644 --- a/ec.c +++ b/ec.c @@ -443,7 +443,7 @@ static int ecptxl_1(ec_curve *c, ec *p, PyObject *x) PyObject *y = 0, *z = 0, *t = 0; mp *xx = 0; const void *q; - int n; + Py_ssize_t n; qd_parse qd; Py_XINCREF(x);