]> granicus.if.org Git - graphviz/commitdiff
free_item: squash -Wunused-parameter warnings
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 16 Nov 2021 02:11:14 +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 cd67589945ff373bca6d47836abbe33368b1af5f..f6a8beb7ffa04ec59ded1226d6dd4ab3955ace8d 100644 (file)
@@ -60,6 +60,9 @@ free_ritem(Dt_t* d, pitem* p,Dtdisc_t* ds)
 static void
 free_item(Dt_t* d, void* p,Dtdisc_t* ds)
 {
+  (void)d;
+  (void)ds;
+
   free (p);
 }