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:
Philip Withnall 2023-02-22 02:45:15 +00:00
parent 4900ea5215
commit 127c899a2e

View File

@ -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);