Fredrik Lundh: eliminate a MSVC compiler warning.
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index e751bc4..b876f34 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -1959,7 +1959,7 @@
 	    continue;
 	}
 	if (0 < ch < 256) {
-	    *output++ = ch;
+	    *output++ = (char) ch;
 	    continue;
 	}
 	/* All other characters are considered invalid */