Remove extra ;

This commit is contained in:
Ed Maste 2010-09-14 01:33:21 +00:00
parent b503d5c50e
commit b3f4d7e17c

View File

@ -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);