From ad50b75d75a894e59ec0c36dea94169b2d3c32b3 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Thu, 9 Feb 2012 22:48:33 +0900 Subject: [PATCH] Fixed compiler warning --- tests/spdylay_map_test.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/spdylay_map_test.c b/tests/spdylay_map_test.c index c1290e8..af3a046 100644 --- a/tests/spdylay_map_test.c +++ b/tests/spdylay_map_test.c @@ -31,7 +31,6 @@ void test_spdylay_map() { spdylay_map map; - int i; CU_ASSERT(0 == spdylay_map_init(&map)); CU_ASSERT(0 == spdylay_map_insert(&map, 1, "foo")); CU_ASSERT(strcmp("foo", spdylay_map_find(&map, 1)) == 0);