summaryrefslogtreecommitdiff
path: root/telepathy-glib/call-stream-endpoint.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/call-stream-endpoint.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/call-stream-endpoint.c')
-rw-r--r--telepathy-glib/call-stream-endpoint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/telepathy-glib/call-stream-endpoint.c b/telepathy-glib/call-stream-endpoint.c
index 2f87d2d3f..08d65d1a6 100644
--- a/telepathy-glib/call-stream-endpoint.c
+++ b/telepathy-glib/call-stream-endpoint.c
@@ -134,9 +134,9 @@ tp_call_stream_endpoint_init (TpCallStreamEndpoint *self)
self->priv->username = g_strdup ("");
self->priv->password = g_strdup ("");
self->priv->remote_candidates = g_ptr_array_new_with_free_func (
- (GDestroyNotify) g_value_array_free);
+ (GDestroyNotify) tp_value_array_free);
self->priv->selected_candidate_pairs = g_ptr_array_new_with_free_func (
- (GDestroyNotify) g_value_array_free);
+ (GDestroyNotify) tp_value_array_free);
self->priv->endpoint_state = g_hash_table_new (NULL, NULL);
}