From 127c899a2e727d10eb88b8fae196add11a6c053f Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Wed, 22 Feb 2023 02:45:15 +0000 Subject: [PATCH] gdbusconnection: Fix the type of a free function MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This didn’t actually cause any observable bugs, since the structures of `PropertyData` and `PropertyGetAllData` were equivalent for the members which the free function touches. Definitely should be fixed though. Signed-off-by: Philip Withnall --- gio/gdbusconnection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/gdbusconnection.c b/gio/gdbusconnection.c index 06c8a6141..6a0d67a8e 100644 --- a/gio/gdbusconnection.c +++ b/gio/gdbusconnection.c @@ -4584,7 +4584,7 @@ typedef struct } PropertyGetAllData; static void -property_get_all_data_free (PropertyData *data) +property_get_all_data_free (PropertyGetAllData *data) { g_object_unref (data->connection); g_object_unref (data->message);