Remove redundant log statements
svn path=/trunk/netsurf/; revision=2698
This commit is contained in:
parent
b7af14b591
commit
148399a7b9
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue