Merged revisions 84078 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84078 | antoine.pitrou | 2010-08-15 20:51:10 +0200 (dim., 15 août 2010) | 3 lines

  Fix more 64-bit warnings.
........
This commit is contained in:
Antoine Pitrou 2010-08-15 19:13:19 +00:00
parent 835b445a91
commit 6c4dbd0d44
2 changed files with 11 additions and 15 deletions

View file

@ -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++ = (unsigned char) inend-in;
*out_data++ = (unsigned char) (inend-in);
in = inend-1;
} else {
/* Less than 3. Output the byte itself */