]> git.saurik.com Git - bison.git/blobdiff - src/state.c
* data/glr.c (yyuserAction): Add "default: break;" case to pacify
[bison.git] / src / state.c
index f8d17d1f40e6cc5445c7aed3e037fff93d2bbf5d..6ced8e5a25a4f45a1b5635195915b3bc94704f98 100644 (file)
@@ -261,7 +261,7 @@ static struct hash_table *state_table = NULL;
 static inline bool
 state_compare (state const *s1, state const *s2)
 {
-  int i;
+  size_t i;
 
   if (s1->nitems != s2->nitems)
     return false;
@@ -284,7 +284,7 @@ state_hash (state const *s, size_t tablesize)
 {
   /* Add up the state's item numbers to get a hash key.  */
   size_t key = 0;
-  int i;
+  size_t i;
   for (i = 0; i < s->nitems; ++i)
     key += s->items[i];
   return key % tablesize;