From 8e1b4a0061bb059fec1238d1c3a23ed6610459e0 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 28 Jan 2010 00:03:44 +0000 Subject: fix box_dump call fix spurious newlines in log message svn path=/trunk/netsurf/; revision=9919 --- image/bmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'image/bmp.c') diff --git a/image/bmp.c b/image/bmp.c index 4eaf5daa6..2a27231ac 100644 --- a/image/bmp.c +++ b/image/bmp.c @@ -94,7 +94,7 @@ bool nsbmp_convert(struct content *c, int iwidth, int iheight) /* Store our content width and description */ c->width = bmp->width; c->height = bmp->height; - LOG(("BMP width %u height %u\n\n", c->width, c->height)); + LOG(("BMP width %u height %u", c->width, c->height)); c->title = malloc(100); if (c->title) snprintf(c->title, 100, messages_get("BMPTitle"), c->width, -- cgit v1.2.3