diff options
Diffstat (limited to 'libtxt/html.c')
-rw-r--r-- | libtxt/html.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libtxt/html.c b/libtxt/html.c index e1c1246..eca2feb 100644 --- a/libtxt/html.c +++ b/libtxt/html.c @@ -59,9 +59,9 @@ static struct dom *generate_dom(char *data, u32 length) struct xml parser; xml_init(&parser); void *buffer = data; - enum xml_error err = xml_parse(&parser, buffer, length, tokens, 128); + enum xml_error error = xml_parse(&parser, buffer, length, tokens, 128); - if (err != XML_SUCCESS && err != XML_ERROR_BUFFERDRY) { + if (error != XML_SUCCESS && error != XML_ERROR_BUFFERDRY) { printf("XML parse error: %d\n", err); printf("DATA: '%s'\n", data); return NULL; |