aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/statistics/census_log_tests.c
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2016-02-05 11:30:00 -0800
committerGravatar murgatroid99 <mlumish@google.com>2016-02-05 11:30:00 -0800
commit309830f6b8c09347db305acf3b05fca333030989 (patch)
treef2eb8c7cc20f3320cee8221f2ebd0190c05f8671 /test/core/statistics/census_log_tests.c
parentb59b142799fe28482162bc192d6205fcb749c6c4 (diff)
Replace 'long' with 'int64_t' in public core headers
Diffstat (limited to 'test/core/statistics/census_log_tests.c')
-rw-r--r--test/core/statistics/census_log_tests.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/statistics/census_log_tests.c b/test/core/statistics/census_log_tests.c
index aac20fd96a..858aeb9809 100644
--- a/test/core/statistics/census_log_tests.c
+++ b/test/core/statistics/census_log_tests.c
@@ -237,7 +237,7 @@ static void reader_thread(void *arg) {
gpr_timespec interval;
int counter = 0;
printf(" Reader starting\n");
- interval = gpr_time_from_micros(args->read_iteration_interval_in_msec * 1000,
+ interval = gpr_time_from_micros((int64_t)args->read_iteration_interval_in_msec * 1000,
GPR_TIMESPAN);
gpr_mu_lock(args->mu);
while (!args->stop_flag && records_read < args->total_records) {