From fa7eeaa347730c85b4b2da259586d509357f3a91 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Thu, 21 Jul 2022 18:27:41 -0700 Subject: [PATCH] smyrna mOpenSlot: squash -Wunused-parameter warnings bd869436742887a0089f5ad817ecb36a1546987c that squashed other such warnings in this file, missed that these are also unused in `mOpenSlot`. --- cmd/smyrna/gui/menucallbacks.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/smyrna/gui/menucallbacks.c b/cmd/smyrna/gui/menucallbacks.c index 75b05c517..6bd5629ef 100644 --- a/cmd/smyrna/gui/menucallbacks.c +++ b/cmd/smyrna/gui/menucallbacks.c @@ -24,6 +24,9 @@ void mOpenSlot(GtkWidget * widget, gpointer user_data) { + (void)widget; + (void)user_data; + GtkWidget *dialog; GtkFileFilter *filter; -- 2.40.0