aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-05-26 16:45:25 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-05-26 16:45:25 -0700
commit3e87909a8a3d17140598103a9dde99c55120fa4f (patch)
treef47224d1fe5f162b3da53f1eed8b116841c8b2b1
parent1e960fc80aed7bc391bed720202ff4f4e39b9a5b (diff)
Fix code
-rw-r--r--src/core/lib/surface/completion_queue.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/lib/surface/completion_queue.c b/src/core/lib/surface/completion_queue.c
index 42e2e72710..0aefed1f9e 100644
--- a/src/core/lib/surface/completion_queue.c
+++ b/src/core/lib/surface/completion_queue.c
@@ -587,7 +587,8 @@ static void cq_end_op_for_next(grpc_exec_ctx *exec_ctx,
/* Only kick if this is the first item queued */
if (is_first) {
gpr_mu_lock(cqd->mu);
- grpc_error *kick_error = cq->poller_vtable->kick(POLLSET_FROM_CQ(cq);
+ grpc_error *kick_error =
+ cq->poller_vtable->kick(POLLSET_FROM_CQ(cq), NULL);
gpr_mu_unlock(cqd->mu);
if (kick_error != GRPC_ERROR_NONE) {