Accept wide chars as integers to prevent conversion warning
diff --git a/fmt/printf.h b/fmt/printf.h
index 30cbc49..db91022 100644
--- a/fmt/printf.h
+++ b/fmt/printf.h
@@ -110,7 +110,7 @@
       visit_any_int(value);
   }
 
-  void visit_char(char value) {
+  void visit_char(int value) {
     if (type_ != 's')
       visit_any_int(value);
   }