time_t is pathological: use %j + cast to print it.

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2021-10-01 12:14:35 -06:00
parent b984d153e0
commit 4aed5c3c9d

View file

@ -406,7 +406,7 @@ ATF_TC_BODY(clockwait_relative_intr_remaining, tc)
(remain.tv_nsec >= 25*1000*1000 || machine_is_virtual()) &&
remain.tv_nsec <= 75*1000*1000,
"the remaining time was not as expected when a relative clockwait"
" got EINTR: %ld.%09ld", remain.tv_sec, remain.tv_nsec);
" got EINTR: %jd.%09ld", (uintmax_t)remain.tv_sec, remain.tv_nsec);
}
#endif /* __FreeBSD__ */