opengl32: Remove redundant const.

This commit is contained in:
Jan Zerebecki 2007-01-24 19:31:56 +01:00 committed by Alexandre Julliard
parent 306718152c
commit cfaf5059b2
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ static BOOL is_extension_supported(const char* extension)
if(strncmp(extension, "GL_VERSION_", 11) == 0)
{
const GLubyte *gl_version = glGetString(GL_VERSION);
const const char *version = extension + 11; /* Move past 'GL_VERSION_' */
const char *version = extension + 11; /* Move past 'GL_VERSION_' */
if(!gl_version) {
ERR("Error no OpenGL version found,\n");