aboutsummaryrefslogtreecommitdiff
path: root/src/core/idhash.c
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2017-01-16 00:43:03 -0800
committerGarrett D'Amore <garrett@damore.org>2017-01-16 00:43:03 -0800
commit39dbff5615631522d3ef98b83141957038502c0d (patch)
tree89becbf88ebb79df9c9202450acd476bd790bde0 /src/core/idhash.c
parentf71209a0b429cddcd44f1f2473c49e986c9b4be7 (diff)
downloadnng-39dbff5615631522d3ef98b83141957038502c0d.tar.gz
nng-39dbff5615631522d3ef98b83141957038502c0d.tar.bz2
nng-39dbff5615631522d3ef98b83141957038502c0d.zip
Various complaints found in AppVeyor build.
Diffstat (limited to 'src/core/idhash.c')
-rw-r--r--src/core/idhash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/idhash.c b/src/core/idhash.c
index 58b68bbf..d816ddf4 100644
--- a/src/core/idhash.c
+++ b/src/core/idhash.c
@@ -91,7 +91,7 @@ nni_hash_resize(nni_idhash *h)
uint32_t oldsize;
nni_idhash_entry *newents;
nni_idhash_entry *oldents;
- int i;
+ uint32_t i;
if ((h->ih_load < h->ih_maxload) && (h->ih_load >= h->ih_minload)) {
// No resize needed.
@@ -231,7 +231,7 @@ nni_idhash_count(nni_idhash *h, uint32_t *countp)
int
nni_idhash_walk(nni_idhash *h, nni_idhash_walkfn fn, void *arg)
{
- int i, rv;
+ uint32_t i, rv;
for (i = 0; i < h->ih_cap; i++) {
nni_idhash_entry *ent = &h->ih_entries[i];