sfeed

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

commit a682b20bb6fb8abc428c8f2f4226e9fd7ccb00b3
parent 762eb0e249504f10342c429d6b17ccde0b515804
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Fri,  9 Nov 2018 17:20:30 +0100

minor white-space style fix

Diffstat:
Msfeed_web.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sfeed_web.c b/sfeed_web.c @@ -94,5 +94,5 @@ main(int argc, char *argv[]) parser.getnext = getchar; xml_parse(&parser); - return found > 0 ? 0: 1; + return found > 0 ? 0 : 1; }