aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/iomgr
diff options
context:
space:
mode:
authorGravatar Bogdan Drutu <bdrutu@google.com>2016-02-16 14:54:35 -0800
committerGravatar Bogdan Drutu <bdrutu@google.com>2016-02-16 14:54:35 -0800
commitddecc6198ea1849ec93c566b33940b37ae23a2ef (patch)
treec801b7e38d1d00e298ab22f4b241f4b48bc12001 /src/core/iomgr
parenta7eefe1a6ea0b83f31ea94bd6c28cd7ac19c099d (diff)
Fix call to grpc_exec_ctx_enqueue
Diffstat (limited to 'src/core/iomgr')
-rw-r--r--src/core/iomgr/udp_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/iomgr/udp_server.c b/src/core/iomgr/udp_server.c
index 955cac5482..ef548cfe4d 100644
--- a/src/core/iomgr/udp_server.c
+++ b/src/core/iomgr/udp_server.c
@@ -137,7 +137,7 @@ grpc_udp_server *grpc_udp_server_create(void) {
}
static void finish_shutdown(grpc_exec_ctx *exec_ctx, grpc_udp_server *s) {
- grpc_exec_ctx_enqueue(exec_ctx, s->shutdown_complete, 1);
+ grpc_exec_ctx_enqueue(exec_ctx, s->shutdown_complete, 1, NULL);
gpr_mu_destroy(&s->mu);
gpr_cv_destroy(&s->cv);