diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2019-05-10 13:44:20 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2019-05-10 13:44:20 +0200 |
commit | 51c35cf03bc6b30b3a8fec6091e5d9eba422f62e (patch) | |
tree | 8d2aa1683325ec79634ed93cd271665e82141603 | |
parent | 0b729e7453626272843ecf86889b21bac12e4cc8 (diff) |
remove unused variables
-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; |