diff options
| author | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-15 18:07:50 (GMT) |
|---|---|---|
| committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-15 18:07:50 (GMT) |
| commit | 22e4155706069f871c842771113b38379a716449 (patch) | |
| tree | 67876144c0870be8f644d0f49ca8b370a063489f /Modules/binascii.c | |
| parent | 47019e500cea31e9ad647bc2d57e47eafc2ef356 (diff) | |
| download | cpython-22e4155706069f871c842771113b38379a716449.zip cpython-22e4155706069f871c842771113b38379a716449.tar.gz cpython-22e4155706069f871c842771113b38379a716449.tar.bz2 | |
Fix other warnings under 64-bit Windows.
Diffstat (limited to 'Modules/binascii.c')
| -rw-r--r-- | Modules/binascii.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/binascii.c b/Modules/binascii.c index 23ce3f0..8b9c5f5 100644 --- a/Modules/binascii.c +++ b/Modules/binascii.c @@ -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++ = inend-in; + *out_data++ = (unsigned char) inend-in; in = inend-1; } else { /* Less than 3. Output the byte itself */ |
