mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Fix more 64-bit warnings.
This commit is contained in:
parent
22e4155706
commit
4045575dd5
2 changed files with 11 additions and 15 deletions
|
@ -664,7 +664,7 @@ binascii_rlecode_hqx(PyObject *self, PyObject *args)
|
|||
/* More than 3 in a row. Output RLE. */
|
||||
*out_data++ = ch;
|
||||
*out_data++ = RUNCHAR;
|
||||
*out_data++ = (unsigned char) inend-in;
|
||||
*out_data++ = (unsigned char) (inend-in);
|
||||
in = inend-1;
|
||||
} else {
|
||||
/* Less than 3. Output the byte itself */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue