summaryrefslogtreecommitdiff
path: root/xml.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2021-01-27 13:07:45 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2021-01-27 15:24:02 +0100
commit645ef7420056796e6d2716bf920b8704451912ac (patch)
tree17f7ad1a29673a5c5a0feaad33ee061c59626c42 /xml.c
parent2f8a83288d91ea0abc2e4ebd6754513ee3ad37ec (diff)
typofixes
Diffstat (limited to 'xml.c')
-rw-r--r--xml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xml.c b/xml.c
index ae106f2..f16cbbb 100644
--- a/xml.c
+++ b/xml.c
@@ -292,7 +292,7 @@ xml_parse(XMLParser *x)
if (c == '!') { /* cdata and comments */
for (tagdatalen = 0; (c = GETNEXT()) != EOF;) {
- /* NOTE: sizeof(x->data) must be atleast sizeof("[CDATA[") */
+ /* NOTE: sizeof(x->data) must be at least sizeof("[CDATA[") */
if (tagdatalen <= sizeof("[CDATA[") - 1)
x->data[tagdatalen++] = c;
if (c == '>')