summaryrefslogtreecommitdiff
path: root/src/plot/16bpp.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-04-19 12:32:24 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-04-19 12:32:24 +0000
commit81ad700162a2fa639a69c1c6e3969ed8f7b3f63b (patch)
tree4b775337975e1891e9e57ce89ea5acc2918006a1 /src/plot/16bpp.c
parent02b57c267d23c5d01e0ca5e7965ffc1194034e17 (diff)
downloadlibnsfb-81ad700162a2fa639a69c1c6e3969ed8f7b3f63b.tar.gz
libnsfb-81ad700162a2fa639a69c1c6e3969ed8f7b3f63b.tar.bz2
Commit fixes from "Building NetSurf on arm-linux framebuffer" thread on netsurf-users ML.
svn path=/trunk/libnsfb/; revision=12203
Diffstat (limited to 'src/plot/16bpp.c')
-rw-r--r--src/plot/16bpp.c2
1 files changed, 1 insertions, 1 deletions
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;