mirror of https://github.com/python/cpython
Fix a compiler warning in unicode_encode_ucs1()
This commit is contained in:
parent
fc026c98d8
commit
fcd9653667
|
@ -6557,7 +6557,7 @@ unicode_encode_call_errorhandler(const char *errors,
|
||||||
static PyObject *
|
static PyObject *
|
||||||
unicode_encode_ucs1(PyObject *unicode,
|
unicode_encode_ucs1(PyObject *unicode,
|
||||||
const char *errors,
|
const char *errors,
|
||||||
int limit)
|
unsigned int limit)
|
||||||
{
|
{
|
||||||
/* input state */
|
/* input state */
|
||||||
Py_ssize_t pos=0, size;
|
Py_ssize_t pos=0, size;
|
||||||
|
|
Loading…
Reference in New Issue