Silence compiler warning
diff --git a/Objects/stringlib/formatter.h b/Objects/stringlib/formatter.h
index df29158..d8e66a6 100644
--- a/Objects/stringlib/formatter.h
+++ b/Objects/stringlib/formatter.h
@@ -31,7 +31,7 @@
         PyErr_Format(PyExc_ValueError,
                      "Unknown format code '%c' "
                      "for object of type '%.200s'",
-                     presentation_type,
+                     (char)presentation_type,
                      type_name);
 #if STRINGLIB_IS_UNICODE
     else