diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-08-24 16:27:53 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-08-24 16:27:53 -0700 |
| commit | 2e5f47aed81992a8dba4b27823894507794fc0ad (patch) | |
| tree | 2383f0139d6931efbbc20ac63be6dfbc1f6e1279 /src/core/idhash.c | |
| parent | c9a68bfe6bea2acc708bf49045f6cb65017a3306 (diff) | |
| download | nng-2e5f47aed81992a8dba4b27823894507794fc0ad.tar.gz nng-2e5f47aed81992a8dba4b27823894507794fc0ad.tar.bz2 nng-2e5f47aed81992a8dba4b27823894507794fc0ad.zip | |
Fix a few warnings and subtle test races.
Diffstat (limited to 'src/core/idhash.c')
| -rw-r--r-- | src/core/idhash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/idhash.c b/src/core/idhash.c index 6d8c8163..c0030f76 100644 --- a/src/core/idhash.c +++ b/src/core/idhash.c @@ -174,7 +174,7 @@ nni_hash_resize(nni_idhash *h) h->ih_maxload = 5; } for (i = 0; i < oldsize; i++) { - uint32_t index; + size_t index; if (oldents[i].ihe_val == NULL) { continue; } |
