From 81ad700162a2fa639a69c1c6e3969ed8f7b3f63b Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Tue, 19 Apr 2011 12:32:24 +0000 Subject: Commit fixes from "Building NetSurf on arm-linux framebuffer" thread on netsurf-users ML. svn path=/trunk/libnsfb/; revision=12203 --- src/plot/16bpp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plot/16bpp.c') diff --git a/src/plot/16bpp.c b/src/plot/16bpp.c index 0badebe..d629944 100644 --- a/src/plot/16bpp.c +++ b/src/plot/16bpp.c @@ -69,7 +69,7 @@ static bool fill(nsfb_t *nsfb, nsfb_bbox_t *rect, nsfb_colour_t c) width = width >> 1; llen = (nsfb->linelen >> 2) - width; ent32 = ent16 | (ent16 << 16); - pvid32 = (uint32_t *)pvid16; + pvid32 = (void *)pvid16; while (height-- > 0) { w = width; -- cgit v1.2.1