diff options
author | David Garcia Quintas <dgq@google.com> | 2016-06-29 20:12:40 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2016-06-29 20:12:40 -0700 |
commit | 1e1a816c3f72b83e5ba304f32db57557a61e0f2f (patch) | |
tree | abda70ed9e410faf65787e187a26449dbcdde55a /test/core | |
parent | b0c246e27cf4f3a5d2c1e35105b57a73e01ce02d (diff) |
fixed size_t format string
Diffstat (limited to 'test/core')
-rw-r--r-- | test/core/network_benchmarks/low_level_ping_pong.c | 2 |
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 1b40895a71..9038d07675 100644 --- a/test/core/network_benchmarks/low_level_ping_pong.c +++ b/test/core/network_benchmarks/low_level_ping_pong.c @@ -583,7 +583,7 @@ static int run_benchmark(char *socket_type, thread_args *client_args, return rv; } - gpr_log(GPR_INFO, "Starting test %s %s %d", client_args->strategy_name, + gpr_log(GPR_INFO, "Starting test %s %s %zu", client_args->strategy_name, socket_type, client_args->msg_size); gpr_thd_new(&tid, server_thread_wrap, server_args, NULL); |