Fix a compile error (apparently Windows only) introduced in 295fdfd4f422
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 0ecbd1d..73f7926 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -8213,6 +8213,7 @@
     char *reason = "character maps to <undefined>";
     charmapencode_result x;
     Py_UCS4 ch;
+    int val;
 
     if (PyUnicode_READY(unicode) < 0)
         return -1;
@@ -8222,8 +8223,8 @@
         PyObject *rep;
         if (Py_TYPE(mapping) == &EncodingMapType) {
             ch = PyUnicode_READ_CHAR(unicode, collendpos);
-            int res = encoding_map_lookup(ch, mapping);
-            if (res != -1)
+            val = encoding_map_lookup(ch, mapping);
+            if (val != -1)
                 break;
             ++collendpos;
             continue;