diff lib/strftime.c @ 4759:27c6099e6a9f

* strftime.c (tm_diff) [! HAVE_TM_GMTOFF]: Fix arg typo in previous patch.
author Paul Eggert <eggert@cs.ucla.edu>
date Tue, 30 Sep 2003 06:11:03 +0000
parents 490ea9ec1ffb
children afb82efdf199
line wrap: on
line diff
--- a/lib/strftime.c
+++ b/lib/strftime.c
@@ -273,7 +273,7 @@
    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,