Use time_t on ays, rem, y and yg in __offtime

This commit is contained in:
H.J. Lu 2012-03-16 09:10:12 -07:00
parent 96cbe7f482
commit f196c7f7af
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2012-03-16 H.J. Lu <hongjiu.lu@intel.com>
* time/offtime.c (__offtime): Use time_t on days, rem, y and yg.
2012-03-16 Joseph Myers <joseph@codesourcery.com>
* sysdeps/ieee754/ldbl-96/t_sincosl.c: Include generator program

View File

@ -31,7 +31,7 @@ __offtime (t, offset, tp)
long int offset;
struct tm *tp;
{
long int days, rem, y;
time_t days, rem, y;
const unsigned short int *ip;
days = *t / SECS_PER_DAY;
@ -63,7 +63,7 @@ __offtime (t, offset, tp)
while (days < 0 || days >= (__isleap (y) ? 366 : 365))
{
/* Guess a corrected year, assuming 365 days per year. */
long int yg = y + days / 365 - (days % 365 < 0);
time_t yg = y + days / 365 - (days % 365 < 0);
/* Adjust DAYS and Y to match the guessed year. */
days -= ((yg - y) * 365