aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-04-25 16:44:17 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-04-25 16:44:17 -0700
commit7f88c484113ec5174209ac124ff7b0ce32e72f49 (patch)
tree21a2b4630365100cd3a4d1e097316406894048ae /test/core
parent819cd88bd7e95092f6f46fada403f86fc0dcacec (diff)
Fix portability test
Diffstat (limited to 'test/core')
-rw-r--r--test/core/iomgr/tcp_client_uv_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/iomgr/tcp_client_uv_test.c b/test/core/iomgr/tcp_client_uv_test.c
index 92fc393422..3a8458df86 100644
--- a/test/core/iomgr/tcp_client_uv_test.c
+++ b/test/core/iomgr/tcp_client_uv_test.c
@@ -194,7 +194,7 @@ void test_fails(void) {
static void destroy_pollset(grpc_exec_ctx *exec_ctx, void *p,
grpc_error *error) {
- grpc_pollset_destroy(p);
+ grpc_pollset_destroy(exec_ctx, p);
}
int main(int argc, char **argv) {