mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-25 16:13:17 +00:00
Fix off-by-one nanosecond bug in macro TIMESPEC_ADD.
Reviewed by: deischen Approved by: re (dwhite) MFC after : 4 days
This commit is contained in:
parent
86a07ac068
commit
3adc17c503
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=147534
@ -94,7 +94,7 @@
|
||||
do { \
|
||||
(dst)->tv_sec = (src)->tv_sec + (val)->tv_sec; \
|
||||
(dst)->tv_nsec = (src)->tv_nsec + (val)->tv_nsec; \
|
||||
if ((dst)->tv_nsec > 1000000000) { \
|
||||
if ((dst)->tv_nsec >= 1000000000) { \
|
||||
(dst)->tv_sec++; \
|
||||
(dst)->tv_nsec -= 1000000000; \
|
||||
} \
|
||||
|
Loading…
Reference in New Issue
Block a user