]> granicus.if.org Git - flex/commitdiff
Fix two "signed/unsigned" warnings
authorMariusz Pluciński <mplucinski@mplucinski.com>
Fri, 25 Jul 2014 16:07:15 +0000 (18:07 +0200)
committerWill Estes <westes575@gmail.com>
Wed, 26 Nov 2014 18:26:49 +0000 (13:26 -0500)
src/flex.skl

index 4d7539557dfb6a2f73e576279feb08309c6c6445..a1f6db67a9be9297328559348645ba4b6585690b 100644 (file)
@@ -3085,7 +3085,7 @@ static int yytbl_read32 (void *v, struct yytbl_reader * rd)
 /** Read the header */
 static int yytbl_hdr_read YYFARGS2(struct yytbl_hdr *, th, struct yytbl_reader *, rd)
 {
-    int     bytes;
+    size_t  bytes;
     memset (th, 0, sizeof (struct yytbl_hdr));
 
     if (yytbl_read32 (&(th->th_magic), rd) != 0)
@@ -3138,7 +3138,7 @@ static struct yytbl_dmap *yytbl_dmap_lookup YYFARGS2(struct yytbl_dmap *, dmap,
        M4_YY_NOOP_GUTS_VAR();
 
     while (dmap->dm_id)
-        if (dmap->dm_id == id)
+        if ((int)(dmap->dm_id) == id)
             return dmap;
         else
             dmap++;