Diff between eaebd5db402c8df4090cae20de36ac31e0b52597 and ba5442362d498ebc38deb435ab9dc7045e5ad6f2
Changed Files
| File | Additions | Deletions | Status |
| profiles/health/mcap_sync.c | +1 | -1 | modified |
Full Patch
diff --git a/profiles/health/mcap_sync.c b/profiles/health/mcap_sync.c
index cc89d47..a0cc02a 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)