aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/transport/chttp2/hpack_table_test.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-01-15 11:37:30 -0800
committerGravatar Craig Tiller <ctiller@google.com>2015-01-15 11:37:30 -0800
commit32946d37e05714d358f66fb4ff8a204ce53d8573 (patch)
treef87c481963d3db4209da8fa07919a83bd1347a24 /test/core/transport/chttp2/hpack_table_test.c
parentda2a953fd607933b2a56c55e713274377af38fd6 (diff)
() --> (void)
Diffstat (limited to 'test/core/transport/chttp2/hpack_table_test.c')
-rw-r--r--test/core/transport/chttp2/hpack_table_test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/core/transport/chttp2/hpack_table_test.c b/test/core/transport/chttp2/hpack_table_test.c
index 8810925ba5..1576a30c1b 100644
--- a/test/core/transport/chttp2/hpack_table_test.c
+++ b/test/core/transport/chttp2/hpack_table_test.c
@@ -54,7 +54,7 @@ static void assert_index(const grpc_chttp2_hptbl *tbl, int idx, const char *key,
assert_str(tbl, md->value, value);
}
-static void test_static_lookup() {
+static void test_static_lookup(void) {
grpc_chttp2_hptbl tbl;
grpc_mdctx *mdctx;
@@ -128,7 +128,7 @@ static void test_static_lookup() {
grpc_mdctx_orphan(mdctx);
}
-static void test_many_additions() {
+static void test_many_additions(void) {
grpc_chttp2_hptbl tbl;
int i;
char key[32];
@@ -165,7 +165,7 @@ static grpc_chttp2_hptbl_find_result find_simple(grpc_chttp2_hptbl *tbl,
return r;
}
-static void test_find() {
+static void test_find(void) {
grpc_chttp2_hptbl tbl;
int i;
char buffer[32];