sfeed

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

commit 1d6b7c5d3f09ec2118400207b81b1332f1ee319a
parent e07b8a182b66b0b64cecf84fcc9c84236df815ff
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Wed, 19 Jan 2022 23:44:21 +0100

sfeed_curses: code-style: remove variable name in definition

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

diff --git a/sfeed_curses.c b/sfeed_curses.c @@ -79,7 +79,7 @@ struct pane { int hidden; /* is visible or not */ int dirty; /* needs draw update */ /* (optional) callback functions */ - struct row *(*row_get)(struct pane *, off_t pos); + struct row *(*row_get)(struct pane *, off_t); char *(*row_format)(struct pane *, struct row *); int (*row_match)(struct pane *, struct row *, const char *); };