nghttpx: Fix compile error on travis

This commit is contained in:
Tatsuhiro Tsujikawa 2016-03-25 02:28:10 +09:00
parent 333dd73a18
commit 9272e80fa6
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ void test_shrpx_ssl_create_lookup_tree(void) {
CU_ASSERT(ctxs[8] == tree->lookup(StringRef::from_lit("x.foo.bar")));
CU_ASSERT(ctxs[9] == tree->lookup(hostnames[9]));
for (int i = 0; i < num; ++i) {
for (size_t i = 0; i < num; ++i) {
SSL_CTX_free(ctxs[i]);
}