mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
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>
This commit is contained in:
parent
4900ea5215
commit
127c899a2e
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user