fix formatting

This commit is contained in:
Benjamin Peterson 2011-10-03 19:35:07 -04:00
parent ccc51c1fc6
commit 4bfce8f81f

View file

@ -1362,7 +1362,7 @@ unicode_resize(PyObject **p_unicode, Py_ssize_t length)
return -1; return -1;
_PyUnicode_CheckConsistency(*p_unicode); _PyUnicode_CheckConsistency(*p_unicode);
return 0; return 0;
} else }
return resize_inplace((PyUnicodeObject*)unicode, length); return resize_inplace((PyUnicodeObject*)unicode, length);
} }