(leapyear): Arg is long int, not int.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 22 Oct 2004 20:19:01 +0000 (20:19 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 22 Oct 2004 20:19:01 +0000 (20:19 +0000)
lib/mktime.c

index ce3de58..a017a51 100644 (file)
@@ -77,7 +77,7 @@ verify (base_year_is_a_multiple_of_100, TM_YEAR_BASE % 100 == 0);
 
 /* Return 1 if YEAR + TM_YEAR_BASE is a leap year.  */
 static inline int
-leapyear (int year)
+leapyear (long int year)
 {
   /* Don't add YEAR to TM_YEAR_BASE, as that might overflow.
      Also, work even if YEAR is negative.  */