From 1a53e57ba22759dbb373d7f97625b9a51fa6656a Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Mon, 7 Feb 2022 02:36:53 +0100 Subject: [PATCH 1/1] ratequeue: Be consistent with signedness in rehash vs. hashget/hashdel. --- src/ratequeue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ratequeue.c b/src/ratequeue.c index 6d654c9..aa57b26 100644 --- a/src/ratequeue.c +++ b/src/ratequeue.c @@ -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; -- 2.11.0