aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/iomgr/endpoint.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-09-18 07:44:19 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-09-18 07:44:19 -0700
commit33825118df7157219cec15382beb006d3462ad96 (patch)
tree649a40da98f56a875ed6558e474dd6c61ce2c7be /src/core/iomgr/endpoint.c
parent000cd8f9f7346defc79fe6aa877af11b42ab5f1e (diff)
Cleanup
Diffstat (limited to 'src/core/iomgr/endpoint.c')
-rw-r--r--src/core/iomgr/endpoint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/iomgr/endpoint.c b/src/core/iomgr/endpoint.c
index a7878e31dd..1955f74b9a 100644
--- a/src/core/iomgr/endpoint.c
+++ b/src/core/iomgr/endpoint.c
@@ -35,13 +35,13 @@
grpc_endpoint_op_status grpc_endpoint_read(grpc_endpoint *ep,
gpr_slice_buffer *slices,
- grpc_iomgr_closure *cb) {
+ grpc_closure *cb) {
return ep->vtable->read(ep, slices, cb);
}
grpc_endpoint_op_status grpc_endpoint_write(grpc_endpoint *ep,
gpr_slice_buffer *slices,
- grpc_iomgr_closure *cb) {
+ grpc_closure *cb) {
return ep->vtable->write(ep, slices, cb);
}