summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorKarl Schultz <kschultz@freedesktop.org>2002-10-04 23:10:06 +0000
committerKarl Schultz <kschultz@freedesktop.org>2002-10-04 23:10:06 +0000
commit248b3cf727211867fca05fb42f1ef7bbdd0862cf (patch)
tree43cb469cd2bab6682fca2ecd4c7cbee257761873 /src/mesa
parent072edaf126ff039b69773afafad1e4c2137525e4 (diff)
remove const storage class specifier for the decl of a var that isn't
a const.
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/swrast/s_texture.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_texture.c b/src/mesa/swrast/s_texture.c
index d816104638..c5dc960db9 100644
--- a/src/mesa/swrast/s_texture.c
+++ b/src/mesa/swrast/s_texture.c
@@ -1,4 +1,4 @@
-/* $Id: s_texture.c,v 1.68 2002/10/04 19:10:13 brianp Exp $ */
+/* $Id: s_texture.c,v 1.69 2002/10/04 23:10:06 kschultz Exp $ */
/*
* Mesa 3-D graphics library
@@ -2212,7 +2212,7 @@ sample_depth_texture( GLcontext *ctx, GLuint unit,
const struct gl_texture_image *texImage = tObj->Image[baseLevel];
const GLuint width = texImage->Width;
const GLuint height = texImage->Height;
- const GLchan ambient;
+ GLchan ambient;
GLenum function;
GLchan result;