]> granicus.if.org Git - graphviz/commitdiff
free_fitem: squash -Wunused-parameter warnings
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 16 Nov 2021 02:11:42 +0000 (18:11 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 6 Dec 2021 00:35:54 +0000 (16:35 -0800)
lib/common/htmlparse.y

index afc291c9bd6ed7ee892fc76bf6d0b5e86bfad8c2..6f6aef0a4c0f57f21c2abd96562ec1166676f704 100644 (file)
@@ -138,6 +138,9 @@ typedef struct {
 static void 
 free_fitem(Dt_t* d, fitem* p, Dtdisc_t* ds)
 {
+    (void)d;
+    (void)ds;
+
     free (p->ti.str);
     free (p);
 }