commit | 2e2e404ff77e95dbe4fee0f19c91913a5888fb6f | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Thu Mar 19 00:21:29 2015 +0000 |
committer | Damien George <damien.p.george@gmail.com> | Thu Mar 19 00:25:33 2015 +0000 |
tree | 32989d5722293edb145295ae137efc32cfdf6f3a | |
parent | 02894b51f48779569e72dff2c2a1edfd6d74b6c1 [diff] [blame] |
py: Allow to compile with extra warnings (sign-compare, unused-param).
diff --git a/py/objstrunicode.c b/py/objstrunicode.c index abef234..1cf4ed4 100644 --- a/py/objstrunicode.c +++ b/py/objstrunicode.c
@@ -53,7 +53,7 @@ has_double_quote = true; } } - int quote_char = '\''; + unichar quote_char = '\''; if (has_single_quote && !has_double_quote) { quote_char = '"'; }