aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/udp_server.cc
diff options
context:
space:
mode:
authorGravatar Dan Zhang <danzh@google.com>2017-11-30 10:25:00 -0500
committerGravatar Dan Zhang <danzh@google.com>2017-11-30 10:25:00 -0500
commit64d588fc8e4c62b525614e4066daea739c152eca (patch)
treef58e7bb83509be4713bec189cb0997c0fecdd85b /src/core/lib/iomgr/udp_server.cc
parent0f7bc57e11a9aabcdc8d91e3a845330da94d8179 (diff)
fix compile error
Diffstat (limited to 'src/core/lib/iomgr/udp_server.cc')
-rw-r--r--src/core/lib/iomgr/udp_server.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/udp_server.cc b/src/core/lib/iomgr/udp_server.cc
index 5c82b258fb..1bff4aebbe 100644
--- a/src/core/lib/iomgr/udp_server.cc
+++ b/src/core/lib/iomgr/udp_server.cc
@@ -438,7 +438,7 @@ static void on_write(grpc_exec_ctx* exec_ctx, void* arg, grpc_error* error) {
return;
}
- // Schedule actual write in another thread.
+ /* Schedule actual write in another thread. */
GRPC_CLOSURE_INIT(&sp->do_write_closure, do_write, arg,
grpc_executor_scheduler(GRPC_EXECUTOR_LONG));