summaryrefslogtreecommitdiff
path: root/image
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2006-07-03 01:01:16 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2006-07-03 01:01:16 +0000
commit148399a7b98facbc6ad4f73a75e0b8cfc84f511a (patch)
treee162c13102e750d1a4da892832ae24a6905c1444 /image
parentb7af14b591707b28d9d99c77a7d5579e4d176c2a (diff)
downloadnetsurf-148399a7b98facbc6ad4f73a75e0b8cfc84f511a.tar.gz
netsurf-148399a7b98facbc6ad4f73a75e0b8cfc84f511a.tar.bz2
Remove redundant log statements
svn path=/trunk/netsurf/; revision=2698
Diffstat (limited to 'image')
-rw-r--r--image/mng.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/image/mng.c b/image/mng.c
index 3f1678424..19123ca7e 100644
--- a/image/mng.c
+++ b/image/mng.c
@@ -159,8 +159,6 @@ mng_bool nsmng_readdata(mng_handle mng, mng_ptr buffer, mng_uint32 size, mng_uin
*bytesread = ((c->source_size - c->data.mng.read_size) < size) ?
(c->source_size - c->data.mng.read_size) : size;
- LOG(("Read %d, processing %p", *bytesread, mng));
-
if ((*bytesread) > 0) {
memcpy(buffer, c->source_data + c->data.mng.read_size, *bytesread);
c->data.mng.read_size += *bytesread;
@@ -188,8 +186,6 @@ mng_bool nsmng_processheader(mng_handle mng, mng_uint32 width, mng_uint32 height
c = (struct content *)mng_get_userdata(mng);
assert(c != NULL);
- LOG(("processing header (%p) %d, %d", c, width, height));
-
c->bitmap = bitmap_create(width, height, BITMAP_NEW);
if (!c->bitmap) {
msg_data.error = messages_get("NoMemory");
@@ -256,8 +252,6 @@ bool nsmng_convert(struct content *c, int width, int height) {
assert(c != NULL);
- LOG(("Converting %p '%s'", c, c->url));
-
/* by this point, the png should have been parsed
* and the bitmap created, so ensure that's the case
*/