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:
Antoine Pitrou 2010-08-15 18:32:16 +00:00
parent bc760d9f45
commit 835b445a91
3 changed files with 7 additions and 6 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++ = inend-in;
*out_data++ = (unsigned char) inend-in;
in = inend-1;
} else {
/* Less than 3. Output the byte itself */