From 23d964a6a477d0790d84f0435d2fe8b2bf2beedb Mon Sep 17 00:00:00 2001 From: Christopher Lam Date: Sat, 9 Oct 2021 12:03:11 +0800 Subject: [PATCH] g_list_free_full requires a GDestroyNotify error in f4941a5b0 --- bindings/guile/gnc-engine-guile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/guile/gnc-engine-guile.c b/bindings/guile/gnc-engine-guile.c index 3873e0ea38..431acd301b 100644 --- a/bindings/guile/gnc-engine-guile.c +++ b/bindings/guile/gnc-engine-guile.c @@ -334,7 +334,7 @@ gnc_scm2guid_glist (SCM guids_scm) static inline void gnc_guid_glist_free (GList *guids) { - g_list_free_full (guids, guid_free); + g_list_free_full (guids, (GDestroyNotify)guid_free); } static SCM