sfeed

Simple RSS and Atom feed parser
git clone https://git.sinitax.com/codemadness/sfeed
Log | Files | Refs | README | LICENSE | Upstream | sfeed.txt

commit 51c35cf03bc6b30b3a8fec6091e5d9eba422f62e
parent 0b729e7453626272843ecf86889b21bac12e4cc8
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Fri, 10 May 2019 13:44:20 +0200

remove unused variables

Diffstat:
Msfeed.c | 2+-
Msfeed_atom.c | 1-
2 files changed, 1 insertion(+), 2 deletions(-)

diff --git 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 @@ -9,7 +9,6 @@ #include "util.h" -static time_t comparetime; static char *line; static size_t linesize;