aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/client_config/subchannel_factory.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/client_config/subchannel_factory.c')
-rw-r--r--src/core/client_config/subchannel_factory.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/client_config/subchannel_factory.c b/src/core/client_config/subchannel_factory.c
index 2a569aba13..e252665000 100644
--- a/src/core/client_config/subchannel_factory.c
+++ b/src/core/client_config/subchannel_factory.c
@@ -36,8 +36,10 @@
void grpc_subchannel_factory_ref(grpc_subchannel_factory *factory) {
factory->vtable->ref(factory);
}
-void grpc_subchannel_factory_unref(grpc_subchannel_factory *factory) {
- factory->vtable->unref(factory);
+
+void grpc_subchannel_factory_unref(grpc_subchannel_factory *factory,
+ grpc_call_list *call_list) {
+ factory->vtable->unref(factory, call_list);
}
grpc_subchannel *grpc_subchannel_factory_create_subchannel(