From d6cb88547bf51687c8ddd35ac0392f44c3b7e6b4 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 11 Apr 2021 21:05:49 -0700 Subject: [PATCH] squash -Wunused-parameter warnings in SetStyle --- cmd/smyrna/draw.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/smyrna/draw.c b/cmd/smyrna/draw.c index 1f8b3a8ad..e4b69deb4 100644 --- a/cmd/smyrna/draw.c +++ b/cmd/smyrna/draw.c @@ -287,6 +287,8 @@ static void SetPenColor(sdot_op* o, int param) static void SetStyle(sdot_op* o, int param) { + (void)o; + (void)param; } static sdot_op * font_op; -- 2.40.0