diff options
author | Craig Tiller <ctiller@google.com> | 2016-12-07 09:52:36 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-12-07 09:52:36 -0800 |
commit | 8ea2f8e1fcc4f35d8f19ce825613eeea5d2c0f52 (patch) | |
tree | 251618d3f4c0fe7447e7bb73a5a0eea8dea83154 /src/core/lib/iomgr | |
parent | 3274dbaf75ea41f2c9f96eae03b05c2530a9afc6 (diff) | |
parent | ab7b2d82e989840f299c136f7062d8c6548ec5e1 (diff) |
Merge branch 'slice_with_exec_ctx' into metadata_filter
Diffstat (limited to 'src/core/lib/iomgr')
-rw-r--r-- | src/core/lib/iomgr/tcp_uv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/tcp_uv.c b/src/core/lib/iomgr/tcp_uv.c index 257a4778c8..f3510bc780 100644 --- a/src/core/lib/iomgr/tcp_uv.c +++ b/src/core/lib/iomgr/tcp_uv.c @@ -181,7 +181,7 @@ static void uv_endpoint_read(grpc_exec_ctx *exec_ctx, grpc_endpoint *ep, GPR_ASSERT(tcp->read_cb == NULL); tcp->read_cb = cb; tcp->read_slices = read_slices; - grpc_slice_buffer_reset_and_unref_internal(exec_ctx,read_slices); + grpc_slice_buffer_reset_and_unref_internal(exec_ctx, read_slices); TCP_REF(tcp, "read"); // TODO(murgatroid99): figure out what the return value here means status = |