From c3585e16cb357a989ba29b11789dbf36764a6834 Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Sat, 20 May 2000 17:50:44 +0000 Subject: typo; bsdi --- usr.sbin/timed/timed/networkdelta.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.sbin/timed') 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; -- cgit v1.2.3