removed VC6 files
[freeglut] / progs / demos / smooth_opengl3 / smooth_opengl3.c
index e30e9f4..abbdfb5 100755 (executable)
@@ -53,8 +53,7 @@ void checkError(const char *functionName)
 {
    GLenum error;
    while (( error = glGetError() ) != GL_NO_ERROR) {\r
-      const GLubyte* sError = gluErrorString(error);
-      fprintf (stderr, "GL error 0x%X, %s, detected in %s\n", error, sError, functionName);
+      fprintf (stderr, "GL error 0x%X detected in %s\n", error, functionName);
    }
 }