aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-11-07 11:27:35 -0800
committerGravatar Mark D. Roth <roth@google.com>2016-11-07 11:27:35 -0800
commitc00688da74f3f37c7bb8f9a831940fa58e23f460 (patch)
tree80e88341d2f0e06773739571784ab612733910d8
parent0e44a258cb532274aa67b09f0fbdffd75d6a6441 (diff)
Fix build problem.
-rw-r--r--src/core/lib/channel/channel_stack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/channel/channel_stack.c b/src/core/lib/channel/channel_stack.c
index c6c90d8c16..15a272b2c3 100644
--- a/src/core/lib/channel/channel_stack.c
+++ b/src/core/lib/channel/channel_stack.c
@@ -259,7 +259,7 @@ void grpc_channel_next_get_info(grpc_exec_ctx *exec_ctx,
grpc_channel_element *elem,
const grpc_channel_info *channel_info) {
grpc_channel_element *next_elem = elem + 1;
- return next_elem->filter->get_channel_info(exec_ctx, next_elem, channel_info);
+ next_elem->filter->get_channel_info(exec_ctx, next_elem, channel_info);
}
void grpc_channel_next_op(grpc_exec_ctx *exec_ctx, grpc_channel_element *elem,