Browse Source

fix glitch from previous check-in (pointer vs int)

tags/R300_DRIVER_0
Brian Paul 22 years ago
parent
commit
41abe9e73f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/mesa/drivers/dri/i830/i830_context.c

+ 1
- 1
src/mesa/drivers/dri/i830/i830_context.c View File

@@ -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 );

Loading…
Cancel
Save