Issue #21442: Fix MSVC compiler warning introduced by issue21377.

This commit is contained in:
Zachary Ware 2014-05-06 11:42:37 -05:00
parent ed49265b91
commit bca9694ac1
1 changed files with 1 additions and 1 deletions

View File

@ -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;