aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/util/port.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/util/port.cc')
-rw-r--r--test/core/util/port.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/util/port.cc b/test/core/util/port.cc
index 4690727337..303306de45 100644
--- a/test/core/util/port.cc
+++ b/test/core/util/port.cc
@@ -75,8 +75,8 @@ static void chose_port(int port) {
atexit(free_chosen_ports);
}
num_chosen_ports++;
- chosen_ports =
- static_cast<int*>(gpr_realloc(chosen_ports, sizeof(int) * num_chosen_ports));
+ chosen_ports = static_cast<int*>(
+ gpr_realloc(chosen_ports, sizeof(int) * num_chosen_ports));
chosen_ports[num_chosen_ports - 1] = port;
}