summaryrefslogtreecommitdiff
path: root/telepathy-glib/connection-contact-info.c
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2013-09-26 14:37:41 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2013-09-26 16:30:50 +0100
commitb29452b531d9edadeb5558697c58c35ecf2f44c2 (patch)
treec48191112ae06a300dbcce0d2b23665f0e3cce19 /telepathy-glib/connection-contact-info.c
parentb8b0af6611ffabc84ad992697e2ae6c87e3483d8 (diff)
downloadtelepathy-glib-b29452b531d9edadeb5558697c58c35ecf2f44c2.tar.gz
Use tp_value_array_free instead of g_value_array_free
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=69849 Reviewed-by: Xavier Claessens <xavier.claessens@collabora.co.uk>
Diffstat (limited to 'telepathy-glib/connection-contact-info.c')
-rw-r--r--telepathy-glib/connection-contact-info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/telepathy-glib/connection-contact-info.c b/telepathy-glib/connection-contact-info.c
index b2008df00..0f2d6951c 100644
--- a/telepathy-glib/connection-contact-info.c
+++ b/telepathy-glib/connection-contact-info.c
@@ -581,7 +581,7 @@ tp_connection_set_contact_info_async (TpConnection *self,
tp_cli_connection_interface_contact_info_call_set_contact_info (self, -1,
contact_info, set_info_cb, result, g_object_unref, NULL);
- g_ptr_array_foreach (contact_info, (GFunc) g_value_array_free, NULL);
+ g_ptr_array_foreach (contact_info, (GFunc) tp_value_array_free, NULL);
g_ptr_array_unref (contact_info);
}