aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/iomgr/endpoint_pair_windows.c
diff options
context:
space:
mode:
authorGravatar Hongwei Wang <hongweiw@google.com>2015-07-28 18:37:40 -0700
committerGravatar Hongwei Wang <hongweiw@google.com>2015-07-28 18:37:40 -0700
commit62b9080a1d1a7b0b7d463d7528b9150fc49d2c62 (patch)
treef82a564991f56ee6aa3a64bd86f5b4ae472f5600 /src/core/iomgr/endpoint_pair_windows.c
parentaa2bef8453cf237c760b53b0fac82a304eebc619 (diff)
parent8e06c2e62e0be2606598dd1f2a6582b585364520 (diff)
Merge branch 'master' of https://github.com/grpc/grpc into zookeeper
Diffstat (limited to 'src/core/iomgr/endpoint_pair_windows.c')
-rw-r--r--src/core/iomgr/endpoint_pair_windows.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/iomgr/endpoint_pair_windows.c b/src/core/iomgr/endpoint_pair_windows.c
index 7d81470a78..e8295df8b3 100644
--- a/src/core/iomgr/endpoint_pair_windows.c
+++ b/src/core/iomgr/endpoint_pair_windows.c
@@ -81,8 +81,10 @@ grpc_endpoint_pair grpc_iomgr_create_endpoint_pair(const char *name, size_t read
SOCKET sv[2];
grpc_endpoint_pair p;
create_sockets(sv);
- p.client = grpc_tcp_create(grpc_winsocket_create(sv[1], "endpoint:client"), "endpoint:server");
- p.server = grpc_tcp_create(grpc_winsocket_create(sv[0], "endpoint:server"), "endpoint:client");
+ p.client = grpc_tcp_create(grpc_winsocket_create(sv[1], "endpoint:client"),
+ "endpoint:server");
+ p.server = grpc_tcp_create(grpc_winsocket_create(sv[0], "endpoint:server"),
+ "endpoint:client");
return p;
}