summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2004-01-19 00:32:43 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2004-01-19 00:32:43 +0000
commit41abe9e73f4d6cebd7bdfcc187c566e715894f0d (patch)
treebe2cf4d49b71896e07d401e1e767730c4b70002c
parent77d240858e83cdaae799ef95188f59b7f2eda464 (diff)
fix glitch from previous check-in (pointer vs int)
-rw-r--r--src/mesa/drivers/dri/i830/i830_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i830/i830_context.c b/src/mesa/drivers/dri/i830/i830_context.c
index 2860113ecaf..49ccb9f1d6a 100644
--- a/src/mesa/drivers/dri/i830/i830_context.c
+++ b/src/mesa/drivers/dri/i830/i830_context.c
@@ -245,7 +245,7 @@ GLboolean i830CreateContext( const __GLcontextModes *mesaVis,
12,
I830_NR_TEX_REGIONS,
imesa->sarea->texList,
- (unsigned) & imesa->sarea->texAge, /* XXX shouldn't need cast! */
+ (unsigned *) & imesa->sarea->texAge, /* XXX shouldn't need cast! */
& imesa->swapped,
sizeof( struct i830_texture_object_t ),
(destroy_texture_object_t *) i830DestroyTexObj );