From c5a2425798e969b2e9e8fe62ad3a3a592820f74c Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Fri, 14 May 2021 17:35:02 -0700 Subject: [PATCH] squash -Wunused-parameter warning in core_loadimage_ps --- plugin/core/gvloadimage_core.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/core/gvloadimage_core.c b/plugin/core/gvloadimage_core.c index 853d6f8d7..497761ec7 100644 --- a/plugin/core/gvloadimage_core.c +++ b/plugin/core/gvloadimage_core.c @@ -153,6 +153,8 @@ static void ps_freeimage(usershape_t *us) /* usershape described by a postscript file */ static void core_loadimage_ps(GVJ_t * job, usershape_t *us, boxf b, boolean filled) { + (void)filled; + assert(job); assert(us); assert(us->name); -- 2.50.1