summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2019-05-10 13:44:20 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2019-05-10 13:44:20 +0200
commit51c35cf03bc6b30b3a8fec6091e5d9eba422f62e (patch)
tree8d2aa1683325ec79634ed93cd271665e82141603
parent0b729e7453626272843ecf86889b21bac12e4cc8 (diff)
remove unused variables
-rw-r--r--sfeed.c2
-rw-r--r--sfeed_atom.c1
2 files changed, 1 insertions, 2 deletions
diff --git a/sfeed.c b/sfeed.c
index 2ee5db0..7701237 100644
--- a/sfeed.c
+++ b/sfeed.c
@@ -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;