From 37278a0fa5a4b65df1254e49e376301bc250cec8 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sun, 9 Nov 2008 19:18:18 +0000 Subject: Don't care about chunk sizes. svn path=/trunk/netsurf/; revision=5671 --- render/html.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/render/html.c b/render/html.c index 30b7c7949..355885b1d 100644 --- a/render/html.c +++ b/render/html.c @@ -173,7 +173,6 @@ bool html_process_data(struct content *c, char *data, unsigned int size) const char *encoding; for (x = 0; x + CHUNK <= size; x += CHUNK) { - LOG(("Parsing %d bytes", CHUNK)); err = binding_parse_chunk(c->data.html.parser_binding, (uint8_t *) data + x, CHUNK); if (err == BINDING_ENCODINGCHANGE) { @@ -183,7 +182,6 @@ bool html_process_data(struct content *c, char *data, unsigned int size) gui_multitask(); } - LOG(("Parsing %lu bytes", (size - x))); err = binding_parse_chunk(c->data.html.parser_binding, (uint8_t *) data + x, (size - x)); if (err == BINDING_ENCODINGCHANGE) { @@ -194,8 +192,6 @@ bool html_process_data(struct content *c, char *data, unsigned int size) encoding_change: - LOG(("Changing encoding")); - /* Retrieve new encoding */ encoding = binding_get_encoding( c->data.html.parser_binding, -- cgit v1.2.3