From 8c3e0c4d90fce56f59aab84f1f62aaf484706ce1 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 29 Nov 2020 11:52:57 +0100 Subject: Fix Wunused-parameter warnings --- src/edge.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/edge.c') diff --git a/src/edge.c b/src/edge.c index 85197d6..417030a 100644 --- a/src/edge.c +++ b/src/edge.c @@ -340,6 +340,11 @@ static void ganv_edge_draw(GanvItem* item, cairo_t* cr, double cx, double cy, double cw, double ch) { + (void)cx; + (void)cy; + (void)cw; + (void)ch; + GanvEdge* edge = GANV_EDGE(item); GanvEdgePrivate* impl = edge->impl; -- cgit v1.2.1