sfeed

simple feed reader - forked from git.codemadness.org/sfeed
git clone git://src.gearsix.net/sfeed
Log | Files | Refs | Atom | README | LICENSE

commit f945d2efff418cf5fa108790ca3adef4796065ef
parent c9a6239d30a9f42a7c4ac7dd411fc80318197106
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Thu,  4 Jul 2019 21:50:05 +0200

util: struct feed: remove old unused fields and tiny code-style

Diffstat:
Mutil.h | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/util.h b/util.h @@ -14,11 +14,9 @@ size_t strlcpy(char *, const char *, size_t); /* feed info */ struct feed { - char * name; /* feed name */ + char *name; /* feed name */ unsigned long totalnew; /* amount of new items per feed */ unsigned long total; /* total items */ - time_t timenewest; - char timenewestformat[64]; }; /* uri */