From 319f8ebef8a9e48cb74b220d4585552928549266 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Mon, 13 Aug 2007 11:09:30 +0000 Subject: httpd: round down sendfile byte count to 64k *: style fixes --- coreutils/cal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils') diff --git a/coreutils/cal.c b/coreutils/cal.c index 37aca00bb..317099385 100644 --- a/coreutils/cal.c +++ b/coreutils/cal.c @@ -45,7 +45,7 @@ static unsigned julian; /* leap year -- account for Gregorian reformation in 1752 */ static int leap_year(unsigned yr) { - if (yr <= 1752) + if (yr <= 1752) return !(yr % 4); return (!(yr % 4) && (yr % 100)) || !(yr % 400); } -- cgit v1.2.3