nghttpx: Fix compile error with gcc

This commit is contained in:
Tatsuhiro Tsujikawa 2016-06-25 23:57:26 +09:00
parent 0613a16c11
commit 76e188e368
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ void test_shrpx_ssl_create_lookup_tree(void) {
tree->add_cert(names[idx], idx);
}
for (size_t i = 0; i < num; ++i) {
CU_ASSERT(i == tree->lookup(names[i]));
CU_ASSERT((ssize_t)i == tree->lookup(names[i]));
}
}