X-Git-Url: https://git.distorted.org.uk/~mdw/adns/blobdiff_plain/9d6ede82a4f21e447cc75a6d8c9431e80545da8a..41559f53541ae03b5647c41c42883dc4b78634d9:/src/tvarith.h diff --git a/src/tvarith.h b/src/tvarith.h index 4a9ba53..202da1f 100644 --- a/src/tvarith.h +++ b/src/tvarith.h @@ -32,9 +32,9 @@ static inline void timevaladd(struct timeval *tv_io, long ms) { struct timeval tmp; assert(ms>=0); tmp= *tv_io; - tmp.tv_usec += (ms%1000)*1000000; + tmp.tv_usec += (ms%1000)*1000; tmp.tv_sec += ms/1000; - if (tmp.tv_usec >= 1000000) { tmp.tv_sec++; tmp.tv_usec -= 1000; } + if (tmp.tv_usec >= 1000000) { tmp.tv_sec++; tmp.tv_usec -= 1000000; } *tv_io= tmp; }