From 148399a7b98facbc6ad4f73a75e0b8cfc84f511a Mon Sep 17 00:00:00 2001 From: Richard Wilson Date: Mon, 3 Jul 2006 01:01:16 +0000 Subject: Remove redundant log statements svn path=/trunk/netsurf/; revision=2698 --- image/mng.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'image') 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 */ -- cgit v1.2.3