From 625f2cf2c25258af6273f9e2fdb90f80463ad3eb Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Thu, 21 Jul 2022 18:31:11 -0700 Subject: [PATCH] smyrna on_attrAddBtn_clicked: squash -Wunused-parameter warnings 55efb8e562bca6c4090a73712342ac006e133704 that squashes other such warnings in this file missed that these are also unused in `on_attrAddBtn_clicked`. --- cmd/smyrna/gui/frmobjectui.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/smyrna/gui/frmobjectui.c b/cmd/smyrna/gui/frmobjectui.c index 1eb3442e9..635f722f9 100644 --- a/cmd/smyrna/gui/frmobjectui.c +++ b/cmd/smyrna/gui/frmobjectui.c @@ -513,6 +513,9 @@ _BB void on_attrProg_toggled(GtkWidget * widget, gpointer user_data) _BB void on_attrAddBtn_clicked(GtkWidget * widget, gpointer user_data) { + (void)widget; + (void)user_data; + char *attr_name; char *defValue; int objKind; -- 2.40.0