aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/surface/init_test.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-12-08 09:29:44 -0800
committerGravatar Craig Tiller <ctiller@google.com>2015-12-08 09:29:44 -0800
commit858be6c58cecb9b0a1e11c3aafd1c362784aad1d (patch)
treec5ddeef6e7d4a8a3506eecc46131070ce54f927a /test/core/surface/init_test.c
parent8344816652332fc8e3eefcdf0b19236e0aed54e3 (diff)
Fix windows build
Diffstat (limited to 'test/core/surface/init_test.c')
-rw-r--r--test/core/surface/init_test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/core/surface/init_test.c b/test/core/surface/init_test.c
index c8791965bf..d4451e4567 100644
--- a/test/core/surface/init_test.c
+++ b/test/core/surface/init_test.c
@@ -47,7 +47,7 @@ static void test(int rounds) {
}
}
-static void test_mixed() {
+static void test_mixed(void) {
grpc_init();
grpc_init();
grpc_shutdown();
@@ -56,8 +56,8 @@ static void test_mixed() {
grpc_shutdown();
}
-static void plugin_init() { g_flag = 1; }
-static void plugin_destroy() { g_flag = 2; }
+static void plugin_init(void) { g_flag = 1; }
+static void plugin_destroy(void) { g_flag = 2; }
static void test_plugin() {
grpc_register_plugin(plugin_init, plugin_destroy);