aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-06-15 10:11:11 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-06-15 10:11:11 -0700
commit7dce09255d3862979b7009e26ef0d562dcdea589 (patch)
treee717906a456020af043a22ff63ae09f4392e4053 /src
parenta9d8fef0397295a9f9fd3433a4d9ce02f2396093 (diff)
Fix merge errors
Diffstat (limited to 'src')
-rw-r--r--src/core/ext/client_config/subchannel.c4
-rw-r--r--src/core/lib/security/transport/handshake.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/ext/client_config/subchannel.c b/src/core/ext/client_config/subchannel.c
index 42ed994573..468067ea57 100644
--- a/src/core/ext/client_config/subchannel.c
+++ b/src/core/ext/client_config/subchannel.c
@@ -644,8 +644,8 @@ static void subchannel_connected(grpc_exec_ctx *exec_ctx, void *arg,
0) {
gpr_log(GPR_INFO, "Retry immediately");
} else {
- gpr_log(GPR_INFO, "Retry in %d.%09d seconds", time_til_next.tv_sec,
- time_til_next.tv_nsec);
+ gpr_log(GPR_INFO, "Retry in %" PRId64 ".%09d seconds",
+ time_til_next.tv_sec, time_til_next.tv_nsec);
}
grpc_timer_init(exec_ctx, &c->alarm, c->next_attempt, on_alarm, c, now);
grpc_error_free_string(errmsg);
diff --git a/src/core/lib/security/transport/handshake.c b/src/core/lib/security/transport/handshake.c
index 2e91206e59..45af6cb08a 100644
--- a/src/core/lib/security/transport/handshake.c
+++ b/src/core/lib/security/transport/handshake.c
@@ -71,7 +71,7 @@ static void dump_state(const char *state, grpc_security_handshake *h,
gpr_timespec ttl =
gpr_time_sub(h->timer.deadline, gpr_now(h->timer.deadline.clock_type));
const char *msg = grpc_error_string(error);
- gpr_log(GPR_DEBUG, "%p: %s ttl=%d.%09d err=%s", h, state, ttl.tv_sec,
+ gpr_log(GPR_DEBUG, "%p: %s ttl=%" PRId64 ".%09d err=%s", h, state, ttl.tv_sec,
ttl.tv_nsec, msg);
grpc_error_free_string(msg);
GRPC_ERROR_UNREF(error);