aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/interop
diff options
context:
space:
mode:
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