@@ -104,8 +104,8 @@ pub extern "C" fn clock() -> clock_t {
return -1;
}
- if ts.tv_sec > time_t::max_value() / 1000000
- || ts.tv_nsec / 1000 > time_t::max_value() - 1000000 * ts.tv_sec
+ if ts.tv_sec > time_t::max_value() / 1_000_000
+ || ts.tv_nsec / 1000 > time_t::max_value() - 1_000_000 * ts.tv_sec
{