From 2e2e404ff77e95dbe4fee0f19c91913a5888fb6f Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 19 Mar 2015 00:21:29 +0000 Subject: py: Allow to compile with extra warnings (sign-compare, unused-param). --- py/objstrunicode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/objstrunicode.c') 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 = '"'; } -- cgit v1.2.3