From 13a56b2801b8a562519d5c90fb038d3d4f5d0f74 Mon Sep 17 00:00:00 2001 From: rbuj Date: Sun, 3 Mar 2019 10:43:16 +0100 Subject: Fix -Werror=cast-function-type with GCC 8 In addition, it removes unnecessary function type casts like: (GDestroyNotify) g_object_unref (GDestroyNotify) g_free --- gsearchtool/libmateui-deprecated/gsearchtool-entry.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gsearchtool/libmateui-deprecated/gsearchtool-entry.c') diff --git a/gsearchtool/libmateui-deprecated/gsearchtool-entry.c b/gsearchtool/libmateui-deprecated/gsearchtool-entry.c index daa3c9aa..7b12466f 100644 --- a/gsearchtool/libmateui-deprecated/gsearchtool-entry.c +++ b/gsearchtool/libmateui-deprecated/gsearchtool-entry.c @@ -268,8 +268,7 @@ gsearch_history_entry_save_history (GsearchHistoryEntry *entry) "search-history", g_variant_new ("a{sas}", &history_builder)); - g_slist_foreach (items, (GFunc) g_free, NULL); - g_slist_free (items); + g_slist_free_full (items, g_free); g_free (key); } -- cgit v1.2.1