# HG changeset patch # User iive # Date 1205058945 0 # Node ID 5b02db26105d97caa2b825bab4de273d68c194ef # Parent 6f6534bf7fbe11e0449a98004645e8d45f67d0c0 Don't use void * arithmetic. diff -r 6f6534bf7fbe -r 5b02db26105d libvo/vo_svga.c --- a/libvo/vo_svga.c Sun Mar 09 10:34:04 2008 +0000 +++ b/libvo/vo_svga.c Sun Mar 09 10:35:45 2008 +0000 @@ -88,7 +88,7 @@ static struct { int yoffset;//y position of the page int doffset;//display start of the page - void * vbase;//memory start address of the page + uint8_t * vbase;//memory start address of the page int locks; }PageStore[MAXPAGES];