X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Ftvarith.h;h=5a9ab5eec2455350d8d8d65155c242d7794516a6;hb=c37d270aba4917429f1377e1148613b48d06aaaa;hp=4a9ba53a6166d49e96d92a406bcb1942a83260c4;hpb=9d6ede82a4f21e447cc75a6d8c9431e80545da8a;p=adns.git diff --git a/src/tvarith.h b/src/tvarith.h index 4a9ba53..5a9ab5e 100644 --- a/src/tvarith.h +++ b/src/tvarith.h @@ -3,12 +3,11 @@ * - static inline functions for doing arithmetic on timevals */ /* - * This file is - * Copyright (C) 1997-1999 Ian Jackson - * - * It is part of adns, which is - * Copyright (C) 1997-1999 Ian Jackson - * Copyright (C) 1999 Tony Finch + * This file is part of adns, which is + * Copyright (C) 1997-2000,2003,2006 Ian Jackson + * Copyright (C) 1999-2000,2003,2006 Tony Finch + * Copyright (C) 1991 Massachusetts Institute of Technology + * (See the file INSTALL for full details.) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -32,9 +31,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; }