From f196c7f7afe356c2d99502e8f30efff87a8a718a Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Fri, 16 Mar 2012 09:10:12 -0700 Subject: Use time_t on ays, rem, y and yg in __offtime --- time/offtime.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'time/offtime.c') diff --git a/time/offtime.c b/time/offtime.c index 1ccd6a89e3..56c49f0201 100644 --- a/time/offtime.c +++ b/time/offtime.c @@ -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 -- cgit 1.4.1