]> granicus.if.org Git - graphviz/commitdiff
smyrna: squash -Wunused-parameter warnings for GLUT callbacks
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 6 May 2022 00:42:13 +0000 (17:42 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 4 Jun 2022 16:21:49 +0000 (09:21 -0700)
These functions need to conform to a particular type signature.

cmd/smyrna/glutrender.c

index 5c758ad0c238d1833840c4ff36c70fb21dba19c7..941f3babccbfd0d264a74a56606efc8ebebe3477 100644 (file)
@@ -151,6 +151,9 @@ static void cb_drag(int X, int Y)
 
 static void cb_keyboard(unsigned char key, int x, int y)
 {
+    (void)x;
+    (void)y;
+
     if (key==27)    /*ESC*/
        graphviz_exit(1);
     if(key=='3')
@@ -172,12 +175,17 @@ static void cb_keyboard(unsigned char key, int x, int y)
 static void cb_keyboard_up(unsigned char key, int x, int y)
 {
     (void)key;
+    (void)x;
+    (void)y;
 
     appmouse_key_release(view);
 }
 
 static void cb_special_key(int key, int x, int y)
 {
+    (void)x;
+    (void)y;
+
     if(key==GLUT_KEY_F1)
     {
        printf("Currently help is not available\n");
@@ -188,6 +196,9 @@ static void cb_special_key(int key, int x, int y)
 
 static void cb_special_key_up(int key, int x, int y)
 {
+    (void)x;
+    (void)y;
+
     if(key==GLUT_KEY_F1)
     {
        printf("Currently help is not available\n");