mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-05 21:38:00 +02:00
free_pending_restore_data --> free_restore_pending_data
This patch doesn't do any function change, but only the function name, to align its name with the struct RestorePendingData. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=72254 Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
This commit is contained in:
parent
911d803af1
commit
66bac8c3e3
1 changed files with 3 additions and 3 deletions
|
|
@ -1044,7 +1044,7 @@ restore_pending (void *data)
|
|||
}
|
||||
|
||||
static void
|
||||
free_pending_restore_data (void *data)
|
||||
free_restore_pending_data (void *data)
|
||||
{
|
||||
RestorePendingData *d = data;
|
||||
|
||||
|
|
@ -1074,9 +1074,9 @@ add_restore_pending_to_transaction (BusTransaction *transaction,
|
|||
|
||||
if (d->hash_entry == NULL ||
|
||||
!bus_transaction_add_cancel_hook (transaction, restore_pending, d,
|
||||
free_pending_restore_data))
|
||||
free_restore_pending_data))
|
||||
{
|
||||
free_pending_restore_data (d);
|
||||
free_restore_pending_data (d);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue