summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authoriive <iive@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-03-09 10:35:45 +0000
committeriive <iive@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-03-09 10:35:45 +0000
commit66fafa133f571dbf2ede6d96feeee8541ae7621a (patch)
tree3f148de3005abbcd65df90ca953bb3684ffbf392 /libvo
parentea92f386c6c74ec5011faeed64be5e04f930d359 (diff)
downloadmpv-66fafa133f571dbf2ede6d96feeee8541ae7621a.tar.bz2
mpv-66fafa133f571dbf2ede6d96feeee8541ae7621a.tar.xz
Don't use void * arithmetic.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26205 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_svga.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_svga.c b/libvo/vo_svga.c
index 86df078360..2c27b106e4 100644
--- a/libvo/vo_svga.c
+++ b/libvo/vo_svga.c
@@ -88,7 +88,7 @@ static int x_pos, y_pos;
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];