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
@ -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