mirror of
https://github.com/python/cpython.git
synced 2025-10-14 10:53:40 +00:00
Merged revisions 84076 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84076 | antoine.pitrou | 2010-08-15 20:07:50 +0200 (dim., 15 août 2010) | 4 lines Fix other warnings under 64-bit Windows. ........
This commit is contained in:
parent
bc760d9f45
commit
835b445a91
3 changed files with 7 additions and 6 deletions
|
@ -653,7 +653,7 @@ binascii_rlecode_hqx(PyObject *self, PyObject *args)
|
|||
/* More than 3 in a row. Output RLE. */
|
||||
*out_data++ = ch;
|
||||
*out_data++ = RUNCHAR;
|
||||
*out_data++ = 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