remove double semicolons (#19682)

old-commit-hash: 8c62b21df113a8c361635e063087b755837cd06c
This commit is contained in:
Dean Lee
2021-01-07 12:57:46 +08:00
committed by GitHub
parent 4a137a3f41
commit bc5449d328

View File

@@ -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() {