aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2007-06-09 01:00:12 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2007-06-09 01:00:12 +0800
commitd8b89b20f13552d3bd1c658f3396714e24744ff6 (patch)
treec219b0ad966a2d4dc7b084b1990a1a3eaf8066b7 /libempathy-gtk
parent874ed37ea70ee8f860f89356005e67ea996863d0 (diff)
downloadgsoc2013-empathy-d8b89b20f13552d3bd1c658f3396714e24744ff6.tar
gsoc2013-empathy-d8b89b20f13552d3bd1c658f3396714e24744ff6.tar.gz
gsoc2013-empathy-d8b89b20f13552d3bd1c658f3396714e24744ff6.tar.bz2
gsoc2013-empathy-d8b89b20f13552d3bd1c658f3396714e24744ff6.tar.lz
gsoc2013-empathy-d8b89b20f13552d3bd1c658f3396714e24744ff6.tar.xz
gsoc2013-empathy-d8b89b20f13552d3bd1c658f3396714e24744ff6.tar.zst
gsoc2013-empathy-d8b89b20f13552d3bd1c658f3396714e24744ff6.zip
Fix build on 64bits arch. Fixes bug #444680 (Matej Cepl).
2007-06-08 Xavier Claessens <xclaesse@gmail.com> * libempathy-gtk/gossip-chat.c: Fix build on 64bits arch. Fixes bug #444680 (Matej Cepl). svn path=/trunk/; revision=131
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/gossip-chat.c2
1 files changed, 1 insertions, 1 deletions
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);
}
}