aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-tp-call.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-03-30 19:43:25 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-03-30 19:43:25 +0800
commit28e12b663411f992d373bc3a96167b0146760889 (patch)
tree28b7717ee3b4e72bb59b8611628d64f5b0b41c25 /libempathy/empathy-tp-call.c
parent0513f2521e2bed5451053d8dcf2fbe89f97f41c5 (diff)
downloadgsoc2013-empathy-28e12b663411f992d373bc3a96167b0146760889.tar
gsoc2013-empathy-28e12b663411f992d373bc3a96167b0146760889.tar.gz
gsoc2013-empathy-28e12b663411f992d373bc3a96167b0146760889.tar.bz2
gsoc2013-empathy-28e12b663411f992d373bc3a96167b0146760889.tar.lz
gsoc2013-empathy-28e12b663411f992d373bc3a96167b0146760889.tar.xz
gsoc2013-empathy-28e12b663411f992d373bc3a96167b0146760889.tar.zst
gsoc2013-empathy-28e12b663411f992d373bc3a96167b0146760889.zip
properly cast GArray content
Diffstat (limited to 'libempathy/empathy-tp-call.c')
-rw-r--r--libempathy/empathy-tp-call.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-tp-call.c b/libempathy/empathy-tp-call.c
index 30ba27dfe..32a09255f 100644
--- a/libempathy/empathy-tp-call.c
+++ b/libempathy/empathy-tp-call.c
@@ -837,7 +837,7 @@ empathy_tp_call_leave (EmpathyTpCall *self)
{
EmpathyTpCallPriv *priv = GET_PRIV (self);
TpHandle self_handle;
- GArray array = { &self_handle, 1 };
+ GArray array = { (gchar *) &self_handle, 1 };
if (!tp_proxy_has_interface_by_id (priv->channel,
TP_IFACE_QUARK_CHANNEL_INTERFACE_GROUP))