squash -Wunused-parameter in SetPenColor
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 12 Apr 2021 04:05:22 +0000 (21:05 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 18 Apr 2021 19:12:54 +0000 (12:12 -0700)
cmd/smyrna/draw.c

index f476ec027a71a6662e82c9789b9f6dd0a60d2b78..1f8b3a8adc3656488bec7031a8cd181d46d37f3a 100644 (file)
@@ -274,6 +274,8 @@ static void SetFillColor(sdot_op*  o, int param)
 }
 static void SetPenColor(sdot_op* o, int param)
 {
+    (void)param;
+
     glCompColor c;
     xdot_op * op=&o->op;
     c = GetglCompColor(op->u.color);