diff options
-rw-r--r-- | sfeed.c | 2 | ||||
-rw-r--r-- | sfeed_atom.c | 1 |
2 files changed, 1 insertions, 2 deletions
@@ -427,7 +427,7 @@ gettzoffset(const char *s) { "PST", -8 * 3600 }, }; const char *p; - int tzhour = 0, tzmin = 0, c; + int tzhour = 0, tzmin = 0; size_t i; for (; *s && isspace((unsigned char)*s); s++) diff --git a/sfeed_atom.c b/sfeed_atom.c index 69d946d..a9c6589 100644 --- a/sfeed_atom.c +++ b/sfeed_atom.c @@ -9,7 +9,6 @@ #include "util.h" -static time_t comparetime; static char *line; static size_t linesize; |