From d8b89b20f13552d3bd1c658f3396714e24744ff6 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Fri, 8 Jun 2007 17:00:12 +0000 Subject: Fix build on 64bits arch. Fixes bug #444680 (Matej Cepl). 2007-06-08 Xavier Claessens * libempathy-gtk/gossip-chat.c: Fix build on 64bits arch. Fixes bug #444680 (Matej Cepl). svn path=/trunk/; revision=131 --- ChangeLog | 5 +++++ libempathy-gtk/gossip-chat.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3b886782a..c23cf83d7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-06-08 Xavier Claessens + + * libempathy-gtk/gossip-chat.c: Fix build on 64bits arch. + Fixes bug #444680 (Matej Cepl). + 2007-06-06 Xavier Claessens * libempathy-gtk/empathy-contact-dialogs.glade: diff --git a/libempathy-gtk/gossip-chat.c b/libempathy-gtk/gossip-chat.c index 9658f56b8..80bfc17f0 100644 --- a/libempathy-gtk/gossip-chat.c +++ b/libempathy-gtk/gossip-chat.c @@ -1087,7 +1087,7 @@ chat_state_changed_cb (EmpathyTpChat *tp_chat, (!was_composing && priv->compositors)) { /* Composing state changed */ g_signal_emit (chat, signals[COMPOSING], 0, - (gboolean) priv->compositors); + priv->compositors != NULL); } } -- cgit v1.2.3