patch 8.2.1875: warning when building GTK gui

Problem:    Warning when building GTK gui.
Solution:   Add missing function parameter.
diff --git a/src/gui_gtk_f.c b/src/gui_gtk_f.c
index 2a9e5a0..4d0290c 100644
--- a/src/gui_gtk_f.c
+++ b/src/gui_gtk_f.c
@@ -51,7 +51,7 @@
 
 
 static void gtk_form_class_init(GtkFormClass *klass);
-static void gtk_form_init(GtkForm *form);
+static void gtk_form_init(GtkForm *form, void *g_class);
 
 static void gtk_form_realize(GtkWidget *widget);
 static void gtk_form_unrealize(GtkWidget *widget);
@@ -270,7 +270,7 @@
 }
 
     static void
-gtk_form_init(GtkForm *form)
+gtk_form_init(GtkForm *form, void *g_class UNUSED)
 {
 #if GTK_CHECK_VERSION(3,0,0)
     gtk_widget_set_has_window(GTK_WIDGET(form), TRUE);