summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-04-27 01:22:26 -0700
committerVinson Lee <vlee@vmware.com>2010-04-27 01:22:26 -0700
commit35d52a062621d1a81b39f465004526e2f597825b (patch)
tree8ac0cd622aa65cb7366ea3b5be45b9642c679104 /progs
parenta7b6a06bf16d04b7372f10d8dd7c10c6c90d6c3c (diff)
progs/tests: Remove meaningless const qualifier in arraytexture.c.
Diffstat (limited to 'progs')
-rw-r--r--progs/tests/arraytexture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/tests/arraytexture.c b/progs/tests/arraytexture.c
index e4e86b9b4c..94adf478d9 100644
--- a/progs/tests/arraytexture.c
+++ b/progs/tests/arraytexture.c
@@ -249,7 +249,7 @@ static void require_extension(const char *ext)
static void Init(void)
{
- const char *const ver_string = (const char *const) glGetString(GL_VERSION);
+ const char *const ver_string = (const char *) glGetString(GL_VERSION);
unsigned i;
printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));