ratequeue: Be consistent with signedness in rehash vs. hashget/hashdel.
authorFredrik Tolf <fredrik@dolda2000.com>
Mon, 7 Feb 2022 01:36:53 +0000 (02:36 +0100)
committerFredrik Tolf <fredrik@dolda2000.com>
Mon, 7 Feb 2022 01:36:53 +0000 (02:36 +0100)
src/ratequeue.c

index 6d654c9..aa57b26 100644 (file)
@@ -151,7 +151,7 @@ static const char *formatsrc(const struct source *src)
 
 static void rehash(int nlen)
 {
-    int i, o, n, m, pl, nl;
+    unsigned int i, o, n, m, pl, nl;
     struct bucket **new, **old;
     
     old = buckets;