diff options
author | Eric Anholt <anholt@FreeBSD.org> | 2004-05-08 07:48:13 +0000 |
---|---|---|
committer | Eric Anholt <anholt@FreeBSD.org> | 2004-05-08 07:48:13 +0000 |
commit | c753f367eb838030c90d9dd07e317c1d810fa3e3 (patch) | |
tree | ae19662fd29573359bb12d19fecd29e5b28fc395 /src/mesa/drivers/dri/unichrome | |
parent | c94a96bae4225f6c31b5908f633703c03aee7079 (diff) |
Don't mix variable definitions and other statements (fixed build on old
compiler).
Diffstat (limited to 'src/mesa/drivers/dri/unichrome')
-rw-r--r-- | src/mesa/drivers/dri/unichrome/via_ioctl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/unichrome/via_ioctl.c b/src/mesa/drivers/dri/unichrome/via_ioctl.c index a73df4e026..eaa5a726e5 100644 --- a/src/mesa/drivers/dri/unichrome/via_ioctl.c +++ b/src/mesa/drivers/dri/unichrome/via_ioctl.c @@ -2241,10 +2241,11 @@ int flush_sys(viaContextPtr vmesa, drm_via_flush_sys_t* buf) else { GLuint j; GLuint *data; - data = (GLuint *)vmesa->dmaAddr; /*=* John Sheng [2003.12.9] Tuxracer & VQ *=*/ GLuint k; GLuint *ES; + + data = (GLuint *)vmesa->dmaAddr; ES = pnEngBase; if (i == 500000) { |