003bc38
003bc38
https://github.com/libexpat/libexpat/pull/109
003bc38
003bc38
--- libexpat-R_2_2_3/expat/tests/runtests.c.fixtests
003bc38
+++ libexpat-R_2_2_3/expat/tests/runtests.c
003bc38
@@ -5671,7 +5671,7 @@ static int XMLCALL
003bc38
 prefix_converter(void *UNUSED_P(data), const char *s)
003bc38
 {
003bc38
     /* If the first byte is 0xff, raise an error */
003bc38
-    if (s[0] == -1)
003bc38
+    if (s[0] == (char)-1)
003bc38
         return -1;
003bc38
     /* Just add the low bits of the first byte to the second */
003bc38
     return (s[1] + (s[0] & 0x7f)) & 0x01ff;