From d6c3a430205e3a1246ed8fc0cf8505bd2b4aaddf Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Fri, 14 May 2021 17:36:15 -0700 Subject: [PATCH] squash -Wunused-parameter warning in core_loadimage_tk --- 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 7520476c8..c52a77589 100644 --- a/plugin/core/gvloadimage_core.c +++ b/plugin/core/gvloadimage_core.c @@ -255,6 +255,8 @@ static void core_loadimage_vml(GVJ_t * job, usershape_t *us, boxf b, boolean fil static void core_loadimage_tk(GVJ_t * job, usershape_t *us, boxf b, boolean filled) { + (void)filled; + gvprintf (job, "image create photo \"photo_%s\" -file \"%s\"\n", us->name, us->name); gvprintf (job, "$c create image %.2f %.2f -image \"photo_%s\"\n", -- 2.40.0