diff options
author | Craig Tiller <ctiller@google.com> | 2017-09-13 09:37:44 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-09-13 09:37:44 -0700 |
commit | b98f0455bcbe29d6f3fdfc74f3fb264575f615f6 (patch) | |
tree | b172939dfb611c8239717d51b68a441c0ce7bf22 /src/core/lib/iomgr/combiner.c | |
parent | 480f5d861264f00ee2226b2aa000bbeb268f0a29 (diff) | |
parent | d1fefe89dacf198a721053f2b1a3e173f1f24948 (diff) |
Merge github.com:grpc/grpc into pollset_kick_stats
Diffstat (limited to 'src/core/lib/iomgr/combiner.c')
-rw-r--r-- | src/core/lib/iomgr/combiner.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/combiner.c b/src/core/lib/iomgr/combiner.c index 360967f3ba..f899b25f10 100644 --- a/src/core/lib/iomgr/combiner.c +++ b/src/core/lib/iomgr/combiner.c @@ -356,7 +356,8 @@ static void combiner_finally_exec(grpc_exec_ctx *exec_ctx, static void enqueue_finally(grpc_exec_ctx *exec_ctx, void *closure, grpc_error *error) { - combiner_finally_exec(exec_ctx, closure, GRPC_ERROR_REF(error)); + combiner_finally_exec(exec_ctx, (grpc_closure *)closure, + GRPC_ERROR_REF(error)); } grpc_closure_scheduler *grpc_combiner_scheduler(grpc_combiner *combiner) { |