]> sjero.net Git - wget/commitdiff
[svn] Remove unused variable.
authorhniksic <devnull@localhost>
Tue, 5 Jul 2005 11:44:52 +0000 (04:44 -0700)
committerhniksic <devnull@localhost>
Tue, 5 Jul 2005 11:44:52 +0000 (04:44 -0700)
src/ChangeLog
src/cmpt.c

index 3143b83bfc9603de4825827ccdf41fb789820c21..0148aa5260679df8b5564ea387d41f546982e981 100644 (file)
@@ -1,3 +1,7 @@
+2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * cmpt.c (timegm): Remove unused variable.
+
 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
 
        * cmpt.c (timegm): Don't call mktime; simply count the seconds
index 3e80f782c31335e15b8b6f37a4a789d24b707ff2..56ff5a144b0a608af0ef7f7c1fe5733dbf8300a2 100644 (file)
@@ -1241,7 +1241,7 @@ timegm (struct tm *t)
     { 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335 }
   };
   unsigned long secs;
-  int year, days;
+  int days;
 
   /* Only handles years between 1970 and 2099. */
   if (t->tm_year < 70 || t->tm_year > 129)