aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/client_config/subchannel_factory.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-09-22 10:42:19 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-09-22 10:42:19 -0700
commit45724b35e411fef7c5da66a74c78428c11d56843 (patch)
tree9264034aca675c89444e02f72ef58e67d7043604 /src/core/client_config/subchannel_factory.c
parent298751c1195523ef6228595043b583c3a6270e08 (diff)
indent pass to get logical source lines on one physical line
Diffstat (limited to 'src/core/client_config/subchannel_factory.c')
-rw-r--r--src/core/client_config/subchannel_factory.c21
1 files changed, 12 insertions, 9 deletions
diff --git a/src/core/client_config/subchannel_factory.c b/src/core/client_config/subchannel_factory.c
index 51b805f2f5..29e854e2ed 100644
--- a/src/core/client_config/subchannel_factory.c
+++ b/src/core/client_config/subchannel_factory.c
@@ -33,17 +33,20 @@
#include "src/core/client_config/subchannel_factory.h"
-void grpc_subchannel_factory_ref(grpc_subchannel_factory *factory) {
- factory->vtable->ref(factory);
+void
+grpc_subchannel_factory_ref (grpc_subchannel_factory * factory)
+{
+ factory->vtable->ref (factory);
}
-void grpc_subchannel_factory_unref(grpc_subchannel_factory *factory,
- grpc_closure_list *closure_list) {
- factory->vtable->unref(factory, closure_list);
+void
+grpc_subchannel_factory_unref (grpc_subchannel_factory * factory, grpc_closure_list * closure_list)
+{
+ factory->vtable->unref (factory, closure_list);
}
-grpc_subchannel *grpc_subchannel_factory_create_subchannel(
- grpc_subchannel_factory *factory, grpc_subchannel_args *args,
- grpc_closure_list *closure_list) {
- return factory->vtable->create_subchannel(factory, args, closure_list);
+grpc_subchannel *
+grpc_subchannel_factory_create_subchannel (grpc_subchannel_factory * factory, grpc_subchannel_args * args, grpc_closure_list * closure_list)
+{
+ return factory->vtable->create_subchannel (factory, args, closure_list);
}