summaryrefslogtreecommitdiff
path: root/telepathy-glib/util.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/util.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/util.c')
-rw-r--r--telepathy-glib/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/telepathy-glib/util.c b/telepathy-glib/util.c
index 7dca706ab..2582624f1 100644
--- a/telepathy-glib/util.c
+++ b/telepathy-glib/util.c
@@ -1130,7 +1130,7 @@ tp_value_array_build (gsize length,
CRITICAL ("%s", error);
g_free (error);
- g_value_array_free (arr);
+ tp_value_array_free (arr);
va_end (var_args);
return NULL;
}