Fix more 64-bit warnings.
diff --git a/Modules/binascii.c b/Modules/binascii.c
index 8b9c5f5..e44c251 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++ = (unsigned char) inend-in;
+                *out_data++ = (unsigned char) (inend-in);
                 in = inend-1;
             } else {
                 /* Less than 3. Output the byte itself */