summaryrefslogtreecommitdiff
path: root/xml.h
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2015-01-02 21:11:42 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2015-01-02 21:11:42 +0100
commitfd4ddfbc4341a14d1a7cdcc4a5a435a65443ff13 (patch)
treefbe7ff1f18982bc3c2de2f66eb3facf6e6088451 /xml.h
parentd9c62a32df99cc602b95bff5eebae430c0de2e02 (diff)
Makefile: fix prerequisite rules
Diffstat (limited to 'xml.h')
-rw-r--r--xml.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/xml.h b/xml.h
index 147f363..5f72494 100644
--- a/xml.h
+++ b/xml.h
@@ -37,7 +37,8 @@ typedef struct xmlparser {
char data[BUFSIZ]; /* data buffer used for tag and attribute data */
size_t readoffset;
size_t readlastbytes;
- unsigned char readbuf[BUFSIZ]; /* read buffer used by xmlparser_getnext */
+ /* read buffer used by xmlparser_getnext */
+ unsigned char readbuf[BUFSIZ];
} XMLParser;
void xmlparser_init(XMLParser *, FILE *);