From 41abe9e73f4d6cebd7bdfcc187c566e715894f0d Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 19 Jan 2004 00:32:43 +0000 Subject: fix glitch from previous check-in (pointer vs int) --- src/mesa/drivers/dri/i830/i830_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mesa') diff --git a/src/mesa/drivers/dri/i830/i830_context.c b/src/mesa/drivers/dri/i830/i830_context.c index 2860113eca..49ccb9f1d6 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 ); -- cgit v1.2.3