aboutsummaryrefslogtreecommitdiff
path: root/tests/idhash.c
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2016-12-31 11:28:47 -0800
committerGarrett D'Amore <garrett@damore.org>2016-12-31 11:28:47 -0800
commit948ff35ee7650d44add0b623593c52b5865c473a (patch)
tree0745954ba64523b8d1cde20b4a19b520f04e463a /tests/idhash.c
parentc0af14cf332003983d89dba3e48aef41e5a22463 (diff)
downloadnng-948ff35ee7650d44add0b623593c52b5865c473a.tar.gz
nng-948ff35ee7650d44add0b623593c52b5865c473a.tar.bz2
nng-948ff35ee7650d44add0b623593c52b5865c473a.zip
One more c99 thing.
Diffstat (limited to 'tests/idhash.c')
-rw-r--r--tests/idhash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/idhash.c b/tests/idhash.c
index 18ca2fec..6ecff47b 100644
--- a/tests/idhash.c
+++ b/tests/idhash.c
@@ -124,7 +124,7 @@ Main({
So(h->ih_count == 1024);
Convey("We can remove them", {
- for (int i = 0; i < 1024; i++) {
+ for (i = 0; i < 1024; i++) {
nni_idhash_remove(h, i);
}
So(h->ih_count == 0);