Commit 76e188e3 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

nghttpx: Fix compile error with gcc

parent 0613a16c
......@@ -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]));
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment