From bca9694ac1cc41f091fb78badbc1d1673b35077a Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Tue, 6 May 2014 11:42:37 -0500 Subject: Issue #21442: Fix MSVC compiler warning introduced by issue21377. --- Objects/bytesobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c index ca7c085..911a93b 100644 --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c @@ -2809,7 +2809,7 @@ PyBytes_Concat(PyObject **pv, PyObject *w) if (Py_REFCNT(*pv) == 1 && PyBytes_CheckExact(*pv)) { /* Only one reference, so we can resize in place */ - size_t oldsize; + Py_ssize_t oldsize; Py_buffer wb; wb.len = -1; -- cgit v0.12