From 71fd3e756c21410561917770b22a8babaea7be41 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sat, 14 Feb 2009 14:16:46 +0000 Subject: fix type warning in LOG statement svn path=/trunk/netsurf/; revision=6493 --- framebuffer/fb_16bpp_plotters.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framebuffer/fb_16bpp_plotters.c b/framebuffer/fb_16bpp_plotters.c index 39d17b095..827cc8f6e 100644 --- a/framebuffer/fb_16bpp_plotters.c +++ b/framebuffer/fb_16bpp_plotters.c @@ -390,7 +390,7 @@ static bool fb_16bpp_path(const float *p, unsigned int n, colour fill, float wid colour c, const float transform[6]) { LOG(("%f, %d, 0x%lx, %f, 0x%lx, %f", - *p, n, fill, width, (unsigned long)c, *transform)); + *p, n, (unsigned long)fill, width, (unsigned long)c, *transform)); return true; } -- cgit v1.2.3