From 8c62b21df113a8c361635e063087b755837cd06c Mon Sep 17 00:00:00 2001 From: Dean Lee Date: Thu, 7 Jan 2021 12:57:46 +0800 Subject: [PATCH] remove double semicolons (#19682) --- selfdrive/common/timing.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/common/timing.h b/selfdrive/common/timing.h index 1a30ad6e1e..48d031e512 100644 --- a/selfdrive/common/timing.h +++ b/selfdrive/common/timing.h @@ -23,7 +23,7 @@ static inline double millis_since_boot() { static inline double seconds_since_boot() { struct timespec t; clock_gettime(CLOCK_BOOTTIME, &t); - return (double)t.tv_sec + t.tv_nsec * 1e-9;; + return (double)t.tv_sec + t.tv_nsec * 1e-9; } static inline uint64_t nanos_since_epoch() {