From 28e12b663411f992d373bc3a96167b0146760889 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Tue, 30 Mar 2010 13:43:25 +0200 Subject: properly cast GArray content --- libempathy/empathy-tp-call.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- cgit v1.2.3