aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/network_benchmarks/low_level_ping_pong.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-01-15 11:37:30 -0800
committerGravatar Craig Tiller <ctiller@google.com>2015-01-15 11:37:30 -0800
commit32946d37e05714d358f66fb4ff8a204ce53d8573 (patch)
treef87c481963d3db4209da8fa07919a83bd1347a24 /test/core/network_benchmarks/low_level_ping_pong.c
parentda2a953fd607933b2a56c55e713274377af38fd6 (diff)
() --> (void)
Diffstat (limited to 'test/core/network_benchmarks/low_level_ping_pong.c')
-rw-r--r--test/core/network_benchmarks/low_level_ping_pong.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/network_benchmarks/low_level_ping_pong.c b/test/core/network_benchmarks/low_level_ping_pong.c
index 8a4c1befb6..9a6f518399 100644
--- a/test/core/network_benchmarks/low_level_ping_pong.c
+++ b/test/core/network_benchmarks/low_level_ping_pong.c
@@ -293,7 +293,7 @@ static void print_histogram(gpr_histogram *histogram) {
gpr_histogram_percentile(histogram, 99.9));
}
-static double now() {
+static double now(void) {
gpr_timespec tv = gpr_now();
return 1e9 * tv.tv_sec + tv.tv_nsec;
}