aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/client_config/channel_connectivity.c
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2016-06-23 14:57:56 -0700
committerGravatar GitHub <noreply@github.com>2016-06-23 14:57:56 -0700
commitd4a299c4556c9810026856a4eee2312674e7c19f (patch)
treeab9975423c811e8bf3778cc7e7239334f8bb0a52 /src/core/ext/client_config/channel_connectivity.c
parent0140f7c9e6c20fe78035d9635a3f5725d51ad35a (diff)
parenta4b34c290d5f91866a3eff2f9793c00eb12f16f0 (diff)
Merge pull request #7003 from kpayson64/mingw_str_format_support
Changed %lld to use mingw supported PRId64
Diffstat (limited to 'src/core/ext/client_config/channel_connectivity.c')
-rw-r--r--src/core/ext/client_config/channel_connectivity.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/ext/client_config/channel_connectivity.c b/src/core/ext/client_config/channel_connectivity.c
index 20c01a9a7c..2fd8e0e123 100644
--- a/src/core/ext/client_config/channel_connectivity.c
+++ b/src/core/ext/client_config/channel_connectivity.c
@@ -189,10 +189,10 @@ void grpc_channel_watch_connectivity_state(
GRPC_API_TRACE(
"grpc_channel_watch_connectivity_state("
"channel=%p, last_observed_state=%d, "
- "deadline=gpr_timespec { tv_sec: %lld, tv_nsec: %d, clock_type: %d }, "
+ "deadline=gpr_timespec { tv_sec: %"PRId64", tv_nsec: %d, clock_type: %d }, "
"cq=%p, tag=%p)",
- 7, (channel, (int)last_observed_state, (long long)deadline.tv_sec,
- (int)deadline.tv_nsec, (int)deadline.clock_type, cq, tag));
+ 7, (channel, (int)last_observed_state, deadline.tv_sec,
+ deadline.tv_nsec, (int)deadline.clock_type, cq, tag));
grpc_cq_begin_op(cq, tag);