Commit fd802300 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Fixed compiler warning

parent 8eea63aa
...@@ -40,17 +40,16 @@ static const char *headers[] = { ...@@ -40,17 +40,16 @@ static const char *headers[] = {
void test_spdylay_frame_unpack_nv() void test_spdylay_frame_unpack_nv()
{ {
const char in[1024]; uint8_t out[1024];
char **nv; char **nv;
int i; size_t inlen = spdylay_frame_pack_nv(out, (char**)headers);
size_t inlen = spdylay_frame_pack_nv(in, (char**)headers); CU_ASSERT(0 == spdylay_frame_unpack_nv(&nv, out, inlen));
CU_ASSERT(0 == spdylay_frame_unpack_nv(&nv, in, inlen));
spdylay_frame_nv_free(nv); spdylay_frame_nv_free(nv);
free(nv); free(nv);
} }
void test_spdylay_frame_count_nv_space() void test_spdylay_frame_count_nv_space()
{ {
CU_ASSERT(83 == spdylay_frame_count_nv_space(headers)); CU_ASSERT(83 == spdylay_frame_count_nv_space((char**)headers));
} }
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