From: Kalle Sommer Nielsen Date: Tue, 19 May 2009 16:06:00 +0000 (+0000) Subject: Cast to unsigned char to prevent compiler warning X-Git-Tag: php-5.3.0RC3~205 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9e230424b568dde3531273ae4b3e06273c03c66f;p=php Cast to unsigned char to prevent compiler warning --- diff --git a/ext/json/JSON_parser.c b/ext/json/JSON_parser.c index 6fbdb54814..259b77b084 100644 --- a/ext/json/JSON_parser.c +++ b/ext/json/JSON_parser.c @@ -360,7 +360,7 @@ static void utf16_to_utf8(smart_str *buf, unsigned short utf16) | (utf16 & 0x3ff)) + 0x10000; buf->len -= 3; - smart_str_appendc(buf, 0xf0 | (utf32 >> 18)); + smart_str_appendc(buf, (unsigned char) (0xf0 | (utf32 >> 18))); smart_str_appendc(buf, 0x80 | ((utf32 >> 12) & 0x3f)); smart_str_appendc(buf, 0x80 | ((utf32 >> 6) & 0x3f)); smart_str_appendc(buf, 0x80 | (utf32 & 0x3f));