Skip to content

Commit

Permalink
Fix call to grpc_exec_ctx_enqueue
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdan Drutu committed Feb 16, 2016
1 parent a7eefe1 commit ddecc61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/iomgr/udp_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit ddecc61

Please sign in to comment.