]> granicus.if.org Git - graphviz/commitdiff
squash a -Wunused-parameter warning in GetFixedOGLPos
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 5 Sep 2020 23:48:08 +0000 (16:48 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 12 Sep 2020 02:24:16 +0000 (19:24 -0700)
lib/glcomp/glutils.c

index 80443d475c568b064ec9ef8e96a4d273c9d54b49..058ed3e87d7761198ce505a56408398e1c4de310 100644 (file)
@@ -31,6 +31,9 @@ int GetFixedOGLPos(int x, int y, float kts, GLfloat * X, GLfloat * Y,
     GLfloat winX, winY;
     GLdouble posX, posY, posZ;
 
+    /* unused */
+    (void)kts;
+
     glColor4f((GLfloat) 0, (GLfloat) 0, (GLfloat) 0, (GLfloat) 0.001);
     glBegin(GL_POINTS);
     glVertex3f((GLfloat) - 100.00, (GLfloat) - 100.00, (GLfloat) 1.00);