From b3f4d7e17c51c07a51fc0b6733007c44bb0475e2 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Tue, 14 Sep 2010 01:33:21 +0000 Subject: [PATCH] Remove extra ; --- usr.bin/calendar/parsedata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/calendar/parsedata.c b/usr.bin/calendar/parsedata.c index 51834390d5a..55997337514 100644 --- a/usr.bin/calendar/parsedata.c +++ b/usr.bin/calendar/parsedata.c @@ -971,7 +971,7 @@ floattoday(int year, double f) int *cumdays = cumdaytab[isleap(year)]; for (i = 0; 1 + cumdays[i] < f; i++) - ;; + ; m = --i; d = floor(f - 1 - cumdays[i]); f -= floor(f);