remove double semicolons (#19682)

old-commit-hash: 8c62b21df1
commatwo_master
Dean Lee 4 years ago committed by GitHub
parent 4a137a3f41
commit bc5449d328
  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