svn commit: r212591 - head/usr.bin/calendar
Ed Maste
emaste at FreeBSD.org
Tue Sep 14 01:33:21 UTC 2010
Author: emaste
Date: Tue Sep 14 01:33:21 2010
New Revision: 212591
URL: http://svn.freebsd.org/changeset/base/212591
Log:
Remove extra ;
Modified:
head/usr.bin/calendar/parsedata.c
Modified: head/usr.bin/calendar/parsedata.c
==============================================================================
--- head/usr.bin/calendar/parsedata.c Tue Sep 14 01:28:05 2010 (r212590)
+++ head/usr.bin/calendar/parsedata.c Tue Sep 14 01:33:21 2010 (r212591)
@@ -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);
More information about the svn-src-all
mailing list