aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/interop
diff options
context:
space:
mode:
authorGravatar Dan Wittmer <wittmer@google.com>2017-11-17 15:49:11 -0800
committerGravatar Dan Wittmer <wittmer@google.com>2017-11-17 15:49:11 -0800
commit472d7c92324213f5b7c0debc5f23720007d910b9 (patch)
treea27ed239d74641949d57d2fa969ba45340c2a073 /test/cpp/interop
parentb88ab92af28bea0badf96b320538011abaffa2c6 (diff)
Fix formatting - missed moving ‘*’ next to type.
Diffstat (limited to 'test/cpp/interop')
-rw-r--r--test/cpp/interop/interop_server.cc2
-rw-r--r--test/cpp/interop/server_helper.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/cpp/interop/interop_server.cc b/test/cpp/interop/interop_server.cc
index f697dda444..7a028111ef 100644
--- a/test/cpp/interop/interop_server.cc
+++ b/test/cpp/interop/interop_server.cc
@@ -322,7 +322,7 @@ void grpc::testing::interop::RunServer(
void grpc::testing::interop::RunServer(
std::shared_ptr<ServerCredentials> creds, const int port,
- ServerStartedCondition *server_started_condition) {
+ ServerStartedCondition* server_started_condition) {
GPR_ASSERT(port != 0);
std::ostringstream server_address;
server_address << "0.0.0.0:" << port;
diff --git a/test/cpp/interop/server_helper.h b/test/cpp/interop/server_helper.h
index 92920b3936..1bf7db1e14 100644
--- a/test/cpp/interop/server_helper.h
+++ b/test/cpp/interop/server_helper.h
@@ -70,7 +70,7 @@ void RunServer(std::shared_ptr<ServerCredentials> creds);
/// \param server_started_condition (optional) Struct holding mutex, condition
/// variable, and condition used to notify when the server has started.
void RunServer(std::shared_ptr<ServerCredentials> creds, int port,
- ServerStartedCondition *server_started_condition);
+ ServerStartedCondition* server_started_condition);
} // namespace interop
} // namespace testing