aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-09-13 11:33:54 -0700
committerGravatar Mark D. Roth <roth@google.com>2016-09-13 11:33:54 -0700
commitd5130f2fb3c03310b90607957beea026ab428618 (patch)
treee5142c82be64f9b370adff979c8e7dca0a480d50
parent5e1b58bcea0d34a5e21e990cf98b64f432b87121 (diff)
Fix build problem from merge.
-rw-r--r--src/core/lib/channel/channel_stack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lib/channel/channel_stack.c b/src/core/lib/channel/channel_stack.c
index 4994b2484c..f5fa0b0390 100644
--- a/src/core/lib/channel/channel_stack.c
+++ b/src/core/lib/channel/channel_stack.c
@@ -275,7 +275,7 @@ void grpc_call_element_send_cancel(grpc_exec_ctx *exec_ctx,
grpc_transport_stream_op op;
memset(&op, 0, sizeof(op));
op.cancel_error = GRPC_ERROR_CANCELLED;
- elem->filter->start_transport_stream_op(exec_ctx, elem, op);
+ elem->filter->start_transport_stream_op(exec_ctx, elem, &op);
}
void grpc_call_element_send_cancel_with_message(grpc_exec_ctx *exec_ctx,
@@ -286,7 +286,7 @@ void grpc_call_element_send_cancel_with_message(grpc_exec_ctx *exec_ctx,
memset(&op, 0, sizeof(op));
grpc_transport_stream_op_add_cancellation_with_message(&op, status,
optional_message);
- elem->filter->start_transport_stream_op(exec_ctx, elem, op);
+ elem->filter->start_transport_stream_op(exec_ctx, elem, &op);
}
void grpc_call_element_send_close_with_message(grpc_exec_ctx *exec_ctx,