summaryrefslogtreecommitdiff
path: root/sfeed.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2022-06-20 13:18:43 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2022-06-20 13:18:43 +0200
commitbd5a0f5d36730ebb11a32c0c089b468b9d60ebe1 (patch)
tree576926b1178a52f1f8e618e114afe86c751ad391 /sfeed.c
parent0f2ddea7cfe31a651533cf170bc31627415db593 (diff)
sfeed: fix a wrong comment
Diffstat (limited to 'sfeed.c')
-rw-r--r--sfeed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfeed.c b/sfeed.c
index a77afb3..deef397 100644
--- a/sfeed.c
+++ b/sfeed.c
@@ -757,7 +757,7 @@ xmlattrentity(XMLParser *p, const char *t, size_t tl, const char *n, size_t nl,
return;
/* try to translate entity, else just pass as data to
- * xmldata handler. */
+ * xmlattr handler. */
if ((len = xml_entitytostr(data, buf, sizeof(buf))) > 0)
xmlattr(p, t, tl, n, nl, buf, (size_t)len);
else