X-Git-Url: https://git.distorted.org.uk/~mdw/adns/blobdiff_plain/c1caf55446278f5d46464c9b610b065fb54f79a3..54aca9651e18e9e7c5c265edc64f9014ce1f2388:/src/tvarith.h diff --git a/src/tvarith.h b/src/tvarith.h index 4a9ba53..cc3102e 100644 --- a/src/tvarith.h +++ b/src/tvarith.h @@ -7,7 +7,7 @@ * Copyright (C) 1997-1999 Ian Jackson * * It is part of adns, which is - * Copyright (C) 1997-1999 Ian Jackson + * Copyright (C) 1997-2000 Ian Jackson * Copyright (C) 1999 Tony Finch * * This program is free software; you can redistribute it and/or modify @@ -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; }