aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/filters/client_channel/client_channel_factory.cc
diff options
context:
space:
mode:
authorGravatar Juanli Shen <aspirinsjl@gmail.com>2019-01-09 09:24:11 -0800
committerGravatar GitHub <noreply@github.com>2019-01-09 09:24:11 -0800
commit3a59faf632427f26bc8dceed46c1fe748fd7df3c (patch)
tree3b59274711e47984ddfd130b9e744296b6dba3bd /src/core/ext/filters/client_channel/client_channel_factory.cc
parentcc0449465fb76516c15c05cacc1c624e471f2014 (diff)
parent23677bd827f6e749b4a3e2bec73eea40dece565e (diff)
Merge pull request #17668 from AspirinSJL/remove_sc_arg
Remove subchannel args
Diffstat (limited to 'src/core/ext/filters/client_channel/client_channel_factory.cc')
-rw-r--r--src/core/ext/filters/client_channel/client_channel_factory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ext/filters/client_channel/client_channel_factory.cc b/src/core/ext/filters/client_channel/client_channel_factory.cc
index 172e9f03c7..130bbe0418 100644
--- a/src/core/ext/filters/client_channel/client_channel_factory.cc
+++ b/src/core/ext/filters/client_channel/client_channel_factory.cc
@@ -30,7 +30,7 @@ void grpc_client_channel_factory_unref(grpc_client_channel_factory* factory) {
}
grpc_subchannel* grpc_client_channel_factory_create_subchannel(
- grpc_client_channel_factory* factory, const grpc_subchannel_args* args) {
+ grpc_client_channel_factory* factory, const grpc_channel_args* args) {
return factory->vtable->create_subchannel(factory, args);
}