mirror of
https://github.com/python/cpython.git
synced 2025-07-16 15:55:18 +00:00
Fix a compiler warning in unicode_encode_ucs1()
This commit is contained in:
parent
fc026c98d8
commit
fcd9653667
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue