From a078c2fbcf642f57d34340c40d60ae32ec882bba Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 21 Nov 2021 09:33:07 -0800 Subject: [PATCH] smyrna edge_xdot: squash -Wunused-parameter warnings --- cmd/smyrna/topviewfuncs.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/smyrna/topviewfuncs.c b/cmd/smyrna/topviewfuncs.c index f31c2fce0..460a3c2e3 100644 --- a/cmd/smyrna/topviewfuncs.c +++ b/cmd/smyrna/topviewfuncs.c @@ -636,6 +636,9 @@ static void renderEdgesFn (Agraph_t * g, edgefn ef, int skipSelected) static void edge_xdot (Agraph_t* g, Agedge_t* e, glCompColor c) { + (void)g; + (void)c; + xdot * x; x=parseXdotwithattrs(e); draw_xdot(x,0); -- 2.40.0