Fix the argument list of a callback

This commit is contained in:
Přemysl Eric Janouch 2022-08-10 10:13:24 +02:00
parent b6e1dc4893
commit dba2b9c982
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 2 additions and 1 deletions

3
fiv.c
View File

@ -791,7 +791,8 @@ on_sort_direction(G_GNUC_UNUSED GtkMenuItem *item, gpointer data)
}
static void
on_notify_view_messages(FivView *view, G_GNUC_UNUSED gpointer user_data)
on_notify_view_messages(FivView *view, G_GNUC_UNUSED GParamSpec *param_spec,
G_GNUC_UNUSED gpointer user_data)
{
gchar *messages = NULL;
g_object_get(view, "messages", &messages, NULL);