From: Matthew Fernandez Date: Mon, 19 Apr 2021 00:27:37 +0000 (-0700) Subject: squash -Wunused-parameter warnings in new_graph_clicked X-Git-Tag: 2.47.2~43^2~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8350f81cfbeef11fb66acf51b307b98082eaef47;p=graphviz squash -Wunused-parameter warnings in new_graph_clicked --- diff --git a/cmd/smyrna/gui/callbacks.c b/cmd/smyrna/gui/callbacks.c index 198f8e2f9..617736694 100644 --- a/cmd/smyrna/gui/callbacks.c +++ b/cmd/smyrna/gui/callbacks.c @@ -20,6 +20,9 @@ void new_graph_clicked(GtkWidget * widget, gpointer user_data) { + (void)widget; + (void)user_data; + g_print("new graph button fired\n"); }