diff options
Diffstat (limited to 'py/objstrunicode.c')
-rw-r--r-- | py/objstrunicode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objstrunicode.c b/py/objstrunicode.c index abef2343f2..1cf4ed4743 100644 --- a/py/objstrunicode.c +++ b/py/objstrunicode.c @@ -53,7 +53,7 @@ STATIC void uni_print_quoted(void (*print)(void *env, const char *fmt, ...), voi has_double_quote = true; } } - int quote_char = '\''; + unichar quote_char = '\''; if (has_single_quote && !has_double_quote) { quote_char = '"'; } |