summaryrefslogtreecommitdiff
path: root/src/mesa/main/texenvprogram.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2006-05-23 01:55:31 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2006-05-23 01:55:31 +0000
commitb8f2f6fee147f423438ef7044984b1d7cfb5a428 (patch)
treea403b09c9d73f59a4f861f1939b3c618015900cd /src/mesa/main/texenvprogram.c
parentacc9566b86fea90f588937aa6786448cec956f4d (diff)
In cache_item(), there was sizeof(void) expression.
Replace void *key parameter with const struct state_key *
Diffstat (limited to 'src/mesa/main/texenvprogram.c')
-rw-r--r--src/mesa/main/texenvprogram.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c
index 0cbbf58a5d..5b2eb2eb52 100644
--- a/src/mesa/main/texenvprogram.c
+++ b/src/mesa/main/texenvprogram.c
@@ -1162,7 +1162,7 @@ static void clear_cache( struct texenvprog_cache *cache )
static void cache_item( struct texenvprog_cache *cache,
GLuint hash,
- void *key,
+ const struct state_key *key,
void *data )
{
struct texenvprog_cache_item *c = MALLOC(sizeof(*c));