From: Thibault Godouet Date: Sat, 30 Sep 2000 11:55:41 +0000 (+0000) Subject: bug corrected X-Git-Tag: ver2_9_4~550 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e708493da039f2b9e43c010351e88de9a280fd8c;p=thirdparty%2Ffcron.git bug corrected --- diff --git a/getloadavg.c b/getloadavg.c index a6264f5..a2d7e84 100644 --- a/getloadavg.c +++ b/getloadavg.c @@ -54,5 +54,5 @@ getloadavg(double *result, int n) } end: fclose(fp); - return (i<0) ? i : i+1; + return (i<0) ? i : i; }