Run clang-format against port_posix.c and port_windows.c

pull/6589/head
David Klempner 9 years ago
parent 6fb122dc6e
commit 948afddffe
  1. 4
      test/core/util/port_posix.c
  2. 4
      test/core/util/port_windows.c

@ -234,8 +234,6 @@ int grpc_pick_unused_port_or_die(void) {
return port;
}
void grpc_recycle_unused_port(int port) {
GPR_ASSERT(free_chosen_port(port));
}
void grpc_recycle_unused_port(int port) { GPR_ASSERT(free_chosen_port(port)); }
#endif /* GPR_POSIX_SOCKET && GRPC_TEST_PICK_PORT */

@ -240,8 +240,6 @@ int grpc_pick_unused_port_or_die(void) {
return port;
}
void grpc_recycle_unused_port(int port) {
GPR_ASSERT(free_chosen_port(port));
}
void grpc_recycle_unused_port(int port) { GPR_ASSERT(free_chosen_port(port)); }
#endif /* GPR_WINSOCK_SOCKET && GRPC_TEST_PICK_PORT */

Loading…
Cancel
Save