From: Matthew Fernandez Date: Tue, 9 Nov 2021 02:42:39 +0000 (-0800) Subject: textfont_makef: squash -Wunused-parameter warnings X-Git-Tag: 2.50.0~33^2~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a7db7183eed994965345d60d33c594a8633ba8cb;p=graphviz textfont_makef: squash -Wunused-parameter warnings --- diff --git a/lib/common/textspan.c b/lib/common/textspan.c index 46c77252f..ce6a7f254 100644 --- a/lib/common/textspan.c +++ b/lib/common/textspan.c @@ -102,6 +102,9 @@ pointf textspan_size(GVC_t *gvc, textspan_t * span) static void* textfont_makef(Dt_t* dt, void* obj, Dtdisc_t* disc) { + (void)dt; + (void)disc; + textfont_t *f1 = (textfont_t*)obj; textfont_t *f2 = calloc(1,sizeof(textfont_t));