From a8f81aec14b299c2f59c7b490818a6c84f4dbd94 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Mon, 15 Nov 2021 18:11:14 -0800 Subject: [PATCH] free_item: squash -Wunused-parameter warnings --- lib/common/htmlparse.y | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/common/htmlparse.y b/lib/common/htmlparse.y index cd6758994..f6a8beb7f 100644 --- a/lib/common/htmlparse.y +++ b/lib/common/htmlparse.y @@ -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); } -- 2.40.0