Fix other warnings under 64-bit Windows.
diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c
index 3973124..8c5c8ac 100644
--- a/Modules/mmapmodule.c
+++ b/Modules/mmapmodule.c
@@ -878,7 +878,7 @@
                             "in range(0, 256)");
             return -1;
         }
-        self->data[i] = v;
+        self->data[i] = (char) v;
         return 0;
     }
     else if (PySlice_Check(item)) {