remove double semicolons (#19682)

pull/19684/head
Dean Lee 4 years ago committed by GitHub
parent fd4ddb769a
commit 8c62b21df1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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() {

Loading…
Cancel
Save