From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> Fixes clang warning: ... android/mcap-lib.c:2366:20: warning: The left operand of '*' is a garbage value return tv->tv_sec * 1000000ll + tv->tv_nsec / 1000ll; ~~~~~~~~~~ ^ 1 warning generated. ... --- android/mcap-lib.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/android/mcap-lib.c b/android/mcap-lib.c index 256abe1..79f6ce2 100644 --- a/android/mcap-lib.c +++ b/android/mcap-lib.c @@ -2454,7 +2454,8 @@ uint64_t mcap_get_timestamp(struct mcap_mcl *mcl, if (given_time) now = *given_time; else - clock_gettime(CLK, &now); + if (clock_gettime(CLK, &now) < 0) + return MCAP_TMSTAMP_DONTSET; tmstamp = time_us(&now) - time_us(&mcl->csp->base_time) + mcl->csp->base_tmstamp; -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html