diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-05-20 17:50:44 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-05-20 17:50:44 +0000 |
commit | c3585e16cb357a989ba29b11789dbf36764a6834 (patch) | |
tree | 1150e128977a9a5d0b59f7143136d090e3e02b70 /usr.sbin | |
parent | c066735fd34020c06fde7c3e53d428eebfe3d28b (diff) |
typo; bsdi
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/timed/timed/networkdelta.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/timed/timed/networkdelta.c b/usr.sbin/timed/timed/networkdelta.c index 48265b13a8a..3783233118f 100644 --- a/usr.sbin/timed/timed/networkdelta.c +++ b/usr.sbin/timed/timed/networkdelta.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)networkdelta.c 5.1 (Berkeley) 5/11/93"; #endif /* not lint */ #ifdef sgi -#ident "$Revision: 1.1 $" +#ident "$Revision: 1.2 $" #endif #include "globals.h" @@ -216,13 +216,13 @@ median(float a, /* initial guess for the median */ aa = (sumx/sum-a)*AMP; if (npts >= 2) { /* guess was too low */ am = a; - aa = xp + max(0.0, aa);; + aa = xp + max(0.0, aa); if (aa > ap) aa = (a + ap)/2; } else if (npts <= -2) { /* guess was two high */ ap = a; - aa = xm + min(0.0, aa);; + aa = xm + min(0.0, aa); if (aa < am) aa = (a + am)/2; |