pidgin/android/libpurple

MXit: Fix compiler warning.
release-2.x.y
2013-04-03, Andrew Victor
de99b599db24
Parents 53109a1846ae
Children 7cd76ebbe8d1
MXit: Fix compiler warning.

markup.c:549:2: warning: overflow in implicit constant conversion [-Woverflow]
--- a/libpurple/protocols/mxit/markup.c Wed Apr 03 00:49:23 2013 +0200
+++ b/libpurple/protocols/mxit/markup.c Wed Apr 03 00:53:35 2013 +0200
@@ -202,7 +202,7 @@
* @param utf8 The extracted string. Must be deallocated by caller.
* @return The number of bytes extracted
*/
-static int asn_getUtf8( const char* data, char type, char** utf8 )
+static int asn_getUtf8( const char* data, unsigned char type, char** utf8 )
{
int len;