aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib
diff options
context:
space:
mode:
authorGravatar thinkerou <thinkerou@gmail.com>2016-09-04 16:15:41 +0800
committerGravatar thinkerou <thinkerou@gmail.com>2016-09-04 16:17:42 +0800
commitabc1a4414d7ca8d94ddeec884aa4c4a85fd513ff (patch)
tree3292fed82452352c748b05ce99d1cc0863d7edfb /src/core/lib
parentd57bbe7f8fda6d6146f47319db319610ec908e48 (diff)
fix type convert
Diffstat (limited to 'src/core/lib')
-rw-r--r--src/core/lib/support/time_posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/support/time_posix.c b/src/core/lib/support/time_posix.c
index 11542072fe..a69c501e9f 100644
--- a/src/core/lib/support/time_posix.c
+++ b/src/core/lib/support/time_posix.c
@@ -127,7 +127,7 @@ static gpr_timespec now_impl(gpr_clock_type clock) {
now.tv_nsec = now_tv.tv_usec * 1000;
break;
case GPR_CLOCK_MONOTONIC:
- now_dbl = (mach_absolute_time() - g_time_start) * g_time_scale;
+ now_dbl = ((double)(mach_absolute_time() - g_time_start)) * g_time_scale;
now.tv_sec = (int64_t)(now_dbl * 1e-9);
now.tv_nsec = (int32_t)(now_dbl - ((double)now.tv_sec) * 1e9);
break;