mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
time_t is pathological: use %j + cast to print it.
Sponsored by: Netflix
This commit is contained in:
parent
b984d153e0
commit
4aed5c3c9d
1 changed files with 1 additions and 1 deletions
|
|
@ -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__ */
|
||||
|
|
|
|||
Loading…
Reference in a new issue