summaryrefslogtreecommitdiff
path: root/gio
diff options
context:
space:
mode:
authorPhilip Withnall <pwithnall@endlessos.org>2023-02-22 02:45:15 +0000
committerPhilip Withnall <pwithnall@endlessos.org>2023-02-23 12:11:24 +0000
commit127c899a2e727d10eb88b8fae196add11a6c053f (patch)
tree5a6ceceb1130cd47b6c78cb5da5dcb610c97bfff /gio
parent4900ea5215e329fbfe893be7975cf05ff153ef81 (diff)
downloadglib-127c899a2e727d10eb88b8fae196add11a6c053f.tar.gz
gdbusconnection: Fix the type of a free function
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 <pwithnall@endlessos.org>
Diffstat (limited to 'gio')
-rw-r--r--gio/gdbusconnection.c2
1 files changed, 1 insertions, 1 deletions
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);