aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/client_channel/client_channel_factory.c
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-10-24 13:29:05 -0700
committerGravatar Mark D. Roth <roth@google.com>2016-10-24 13:29:05 -0700
commite3a21005bfa42d974ee2b8a0776797ae2b7eea23 (patch)
tree1be4b71e4232e8e2ec15f4ff44f24be12c5cffcc /src/core/ext/client_channel/client_channel_factory.c
parent5f40e5ddf597169a5cf88d1b0471831f1db1edc0 (diff)
Fix propagation of channel args for insecure channels.
Diffstat (limited to 'src/core/ext/client_channel/client_channel_factory.c')
-rw-r--r--src/core/ext/client_channel/client_channel_factory.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ext/client_channel/client_channel_factory.c b/src/core/ext/client_channel/client_channel_factory.c
index db1cc9093c..4900832d57 100644
--- a/src/core/ext/client_channel/client_channel_factory.c
+++ b/src/core/ext/client_channel/client_channel_factory.c
@@ -44,14 +44,14 @@ void grpc_client_channel_factory_unref(grpc_exec_ctx* exec_ctx,
grpc_subchannel* grpc_client_channel_factory_create_subchannel(
grpc_exec_ctx* exec_ctx, grpc_client_channel_factory* factory,
- grpc_subchannel_args* args) {
+ const grpc_subchannel_args* args) {
return factory->vtable->create_subchannel(exec_ctx, factory, args);
}
grpc_channel* grpc_client_channel_factory_create_channel(
grpc_exec_ctx* exec_ctx, grpc_client_channel_factory* factory,
const char* target, grpc_client_channel_type type,
- grpc_channel_args* args) {
+ const grpc_channel_args* args) {
return factory->vtable->create_client_channel(exec_ctx, factory, target, type,
args);
}