From: Brian Paul Date: Tue, 23 May 2006 01:55:31 +0000 (+0000) Subject: In cache_item(), there was sizeof(void) expression. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b8f2f6fee147f423438ef7044984b1d7cfb5a428;p=mesa.git In cache_item(), there was sizeof(void) expression. Replace void *key parameter with const struct state_key * --- diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c index 0cbbf58a5d8..5b2eb2eb52f 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));