mirror of https://github.com/python/cpython.git
Fredrik Lundh: eliminate a MSVC compiler warning.
This commit is contained in:
parent
9e896b37c7
commit
34888ed689
|
@ -1959,7 +1959,7 @@ int PyUnicode_EncodeDecimal(Py_UNICODE *s,
|
|||
continue;
|
||||
}
|
||||
if (0 < ch < 256) {
|
||||
*output++ = ch;
|
||||
*output++ = (char) ch;
|
||||
continue;
|
||||
}
|
||||
/* All other characters are considered invalid */
|
||||
|
|
Loading…
Reference in New Issue