From ba5442362d498ebc38deb435ab9dc7045e5ad6f2 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Tue, 24 Jun 2014 15:07:43 +0300 Subject: [PATCH] mcap: Fix possible overflow --- profiles/health/mcap_sync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/health/mcap_sync.c b/profiles/health/mcap_sync.c index cc89d4738..a0cc02a24 100644 --- a/profiles/health/mcap_sync.c +++ b/profiles/health/mcap_sync.c @@ -187,7 +187,7 @@ void mcap_sync_stop(struct mcap_mcl *mcl) static uint64_t time_us(struct timespec *tv) { - return tv->tv_sec * 1000000 + tv->tv_nsec / 1000; + return tv->tv_sec * 1000000ll + tv->tv_nsec / 1000ll; } static int64_t bt2us(int bt) -- 2.47.3