diff options
author | Brian Paul <[email protected]> | 2005-10-31 21:52:56 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-10-31 21:52:56 +0000 |
commit | ffec105109f5b16bfe8282bd477d4aa32b550015 (patch) | |
tree | cb7680c14b8d0630b3075745aa9ec07889743643 /src/mesa/drivers/dri/radeon/radeon_swtcl.c | |
parent | dcf4c17fb1624af47181c63af4c3ad29f919c17a (diff) |
fix problems found with gcc 2.96 (bug 4934)
Diffstat (limited to 'src/mesa/drivers/dri/radeon/radeon_swtcl.c')
-rw-r--r-- | src/mesa/drivers/dri/radeon/radeon_swtcl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_swtcl.c b/src/mesa/drivers/dri/radeon/radeon_swtcl.c index 7a97cf0ce60..1a737ebe612 100644 --- a/src/mesa/drivers/dri/radeon/radeon_swtcl.c +++ b/src/mesa/drivers/dri/radeon/radeon_swtcl.c @@ -391,7 +391,7 @@ radeonDmaPrimitive( radeonContextPtr rmesa, GLenum prim ) assert(rmesa->dma.current.ptr == rmesa->dma.current.start); } -#define LOCAL_VARS radeonContextPtr rmesa = RADEON_CONTEXT(ctx); (void)rmesa +#define LOCAL_VARS radeonContextPtr rmesa = RADEON_CONTEXT(ctx) #define INIT( prim ) radeonDmaPrimitive( rmesa, prim ) #define FLUSH() RADEON_NEWPRIM( rmesa ) #define GET_CURRENT_VB_MAX_VERTS() \ |