Fix compiler warning in _PyUnicode_FromUCS2()
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index b2b492a..1042254 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -1717,7 +1717,7 @@
 
     assert(size >= 0);
     if (size == 1 && u[0] < 256)
-        return get_latin1_char(u[0]);
+        return get_latin1_char((unsigned char)u[0]);
     for (i = 0; i < size; i++) {
         if (u[i] > max_char) {
             max_char = u[i];