From: Victor Stinner Date: Mon, 29 Jan 2018 12:47:06 +0000 (+0100) Subject: bpo-28685: Fix compiler warning (GH-5423) X-Git-Tag: v3.7.0b1~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8017b804a06804793bcc0a7f734d8a846b0fe18a;p=python bpo-28685: Fix compiler warning (GH-5423) --- diff --git a/Objects/listobject.c b/Objects/listobject.c index 9e321371aa..f0fe962be9 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -2028,7 +2028,8 @@ unsafe_object_compare(PyObject *v, PyObject *w, MergeState *ms) static int unsafe_latin_compare(PyObject *v, PyObject *w, MergeState *ms) { - int len, res; + Py_ssize_t len; + int res; /* Modified from Objects/unicodeobject.c:unicode_compare, assuming: */ assert(v->ob_type == w->ob_type);