* strftime.c (tm_diff) [! HAVE_TM_GMTOFF]: Fix arg typo in previous patch.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 30 Sep 2003 06:11:03 +0000 (06:11 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 30 Sep 2003 06:11:03 +0000 (06:11 +0000)
lib/ChangeLog
lib/strftime.c

index 79effe0ae0c506b8334f6800705b8f8c9bf9a9ac..ebaadd6b63d8639a6a9aef6c86b1b7d575b1ab92 100644 (file)
@@ -1,3 +1,8 @@
+2003-09-29  Paul Eggert  <eggert@twinsun.com>
+
+       * strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
+       Fix arg typo in previous patch.
+
 2003-09-28  Jim Meyering  <jim@meyering.net>
 
        * error.c: Correct cpp indentation.
index 66f27329725f46a1fd3d7c7b746a4eea20c58ff9..dccbaf7a18cc302ba909deef4dfaa70883339715 100644 (file)
@@ -273,7 +273,7 @@ memcpy_uppcase (CHAR_T *dest, const CHAR_T *src,
    measured in seconds, ignoring leap seconds.  */
 # define tm_diff ftime_tm_diff
 static int
-tm_diff (const struct tm *, const struct tm *)
+tm_diff (const struct tm *a, const struct tm *b)
 {
   /* Compute intervening leap days correctly even if year is negative.
      Take care to avoid int overflow in leap day calculations,