sfeed

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

commit a6707276679bbb660b9ca808f183511fbc35df61
parent fbe7d9926bbdafdfb42609aa614ba50a172f3150
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Sun, 11 Mar 2018 18:37:08 +0100

sfeed_tail: remove unused variables

Diffstat:
Msfeed_tail.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sfeed_tail.c b/sfeed_tail.c @@ -63,11 +63,10 @@ static void printfeed(FILE *fp, const char *feedname) { struct line *add, search; - char *fields[FieldLast], *s; + char *fields[FieldLast]; ssize_t linelen; time_t parsedtime; struct tm *tm; - int i; while ((linelen = getline(&line, &linesize, fp)) > 0) { if (line[linelen - 1] == '\n')