]> granicus.if.org Git - libexpat/commitdiff
Warning patch from Nisheeth.
authorJames Clark <jjc@jclark.com>
Mon, 8 May 2000 04:26:17 +0000 (04:26 +0000)
committerJames Clark <jjc@jclark.com>
Mon, 8 May 2000 04:26:17 +0000 (04:26 +0000)
expat/xmltok/xmltok.c

index 9d7e46b6302c994a80098df5d5cc20e49e7d23c2..f7a5b2b2bfbd542d2fffafe2daf0e5a902b813a5 100755 (executable)
@@ -1271,7 +1271,7 @@ XmlInitUnknownEncoding(void *mem,
 {
   int i;
   struct unknown_encoding *e = mem;
-  for (i = 0; i < sizeof(struct normal_encoding); i++)
+  for (i = 0; i < (int)sizeof(struct normal_encoding); i++)
     ((char *)mem)[i] = ((char *)&latin1_encoding)[i];
   for (i = 0; i < 128; i++)
     if (latin1_encoding.type[i] != BT_OTHER
@@ -1389,7 +1389,7 @@ int getEncodingIndex(const char *name)
   int i;
   if (name == 0)
     return NO_ENC;
-  for (i = 0; i < sizeof(encodingNames)/sizeof(encodingNames[0]); i++)
+  for (i = 0; i < (int)(sizeof(encodingNames)/sizeof(encodingNames[0])); i++)
     if (streqci(name, encodingNames[i]))
       return i;
   return UNKNOWN_ENC;