sfeed

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

commit e9b8b6c62ac1a37f795259c979fa5fce4dd8ffdb
parent a5edc50032fae1231acb44b946b060e54aca9560
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Sun, 10 Apr 2016 13:54:03 +0200

small style fix

Diffstat:
Msfeed.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sfeed.c b/sfeed.c @@ -55,7 +55,7 @@ enum TagId { AtomTagId, AtomTagLink, AtomTagAuthor, - TagLast, + TagLast }; typedef struct feedtag { @@ -85,7 +85,7 @@ typedef struct feedcontext { int attrcount; /* count item HTML element attributes */ } FeedContext; -static long long datetounix(long long, int, int, int, int, int); +static long long datetounix(long long, int, int, int, int, int); static enum TagId gettag(enum FeedType, const char *, size_t); static long long gettzoffset(const char *); static int isattr(const char *, size_t, const char *, size_t);