summaryrefslogtreecommitdiff
path: root/sfeed_opml_import.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2016-03-10 19:01:26 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2016-03-10 19:01:26 +0100
commit3606cc675c8cfed49091421b7197a3667d5d12cb (patch)
tree0edeaa6b97d99558b5f56835d5d12892db96b22c /sfeed_opml_import.c
parent9a74fe65fee19f5b8d71c6c379ca028ad0e356a4 (diff)
remove cast of unused variables
Diffstat (limited to 'sfeed_opml_import.c')
-rw-r--r--sfeed_opml_import.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/sfeed_opml_import.c b/sfeed_opml_import.c
index bf1a742..fdee71a 100644
--- a/sfeed_opml_import.c
+++ b/sfeed_opml_import.c
@@ -25,10 +25,6 @@ static void
xml_handler_end_element(XMLParser *p, const char *tag, size_t taglen,
int isshort)
{
- (void)p;
- (void)taglen;
- (void)isshort;
-
if (strcasecmp(tag, "outline"))
return;
@@ -51,11 +47,6 @@ static void
xml_handler_attr(XMLParser *p, const char *tag, size_t taglen,
const char *name, size_t namelen, const char *value, size_t valuelen)
{
- (void)p;
- (void)taglen;
- (void)namelen;
- (void)valuelen;
-
if (strcasecmp(tag, "outline"))
return;