mirror of
https://github.com/python/cpython.git
synced 2026-05-19 10:54:30 -04:00
fix warning with ucs4
This commit is contained in:
@@ -2208,10 +2208,11 @@ PyUnicode_DecodeUTF32Stateful(const char *s,
|
||||
Py_UNICODE *p;
|
||||
#ifndef Py_UNICODE_WIDE
|
||||
int pairs = 0;
|
||||
const unsigned char *qq;
|
||||
#else
|
||||
const int pairs = 0;
|
||||
#endif
|
||||
const unsigned char *q, *e, *qq;
|
||||
const unsigned char *q, *e;
|
||||
int bo = 0; /* assume native ordering by default */
|
||||
const char *errmsg = "";
|
||||
/* Offsets from q for retrieving bytes in the right order. */
|
||||
|
||||
Reference in New Issue
Block a user