From 35d52a062621d1a81b39f465004526e2f597825b Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Tue, 27 Apr 2010 01:22:26 -0700 Subject: [PATCH] progs/tests: Remove meaningless const qualifier in arraytexture.c. --- progs/tests/arraytexture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/progs/tests/arraytexture.c b/progs/tests/arraytexture.c index e4e86b9..94adf47 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)); -- 2.7.4