diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2006-05-30 22:15:24 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2006-05-30 22:15:24 +0000 |
commit | e4cb9cd167b2993a4d73871b80216af9766f130b (patch) | |
tree | 3188f3d862270cc798885b7a268af4374ad12a7e /src/mesa/main | |
parent | 8333012b56ba41380859eb78dd42b76d84788877 (diff) |
remove redundant 'const'
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/texenvprogram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c index 5db2f6249c..0a43f7ac4a 100644 --- a/src/mesa/main/texenvprogram.c +++ b/src/mesa/main/texenvprogram.c @@ -1106,7 +1106,7 @@ create_new_program(struct state_key *key, GLcontext *ctx, static struct fragment_program * search_cache(const struct texenvprog_cache *cache, GLuint hash, - const const void *key, + const void *key, GLuint keysize) { struct texenvprog_cache_item *c; |