commit | 22e4155706069f871c842771113b38379a716449 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Sun Aug 15 18:07:50 2010 +0000 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Sun Aug 15 18:07:50 2010 +0000 |
tree | 67876144c0870be8f644d0f49ca8b370a063489f | |
parent | 47019e500cea31e9ad647bc2d57e47eafc2ef356 [diff] [blame] |
Fix other warnings under 64-bit Windows.
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 @@ /* 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 */