Mercurial > mplayer.hg
changeset 26173:5b02db26105d
Don't use void * arithmetic.
author | iive |
---|---|
date | Sun, 09 Mar 2008 10:35:45 +0000 |
parents | 6f6534bf7fbe |
children | 3f5039b63e4b |
files | libvo/vo_svga.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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];