aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-06-19 20:47:57 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-06-19 20:47:57 +0800
commit1a68a64be544af2b35f981bac45fc6355def22d9 (patch)
tree4a31f9e1958e93f8c43cd10639fb724ba747f630
parentefed177893aecde7f1fcadd4f776afdafb66ad4f (diff)
downloadgsoc2013-empathy-1a68a64be544af2b35f981bac45fc6355def22d9.tar
gsoc2013-empathy-1a68a64be544af2b35f981bac45fc6355def22d9.tar.gz
gsoc2013-empathy-1a68a64be544af2b35f981bac45fc6355def22d9.tar.bz2
gsoc2013-empathy-1a68a64be544af2b35f981bac45fc6355def22d9.tar.lz
gsoc2013-empathy-1a68a64be544af2b35f981bac45fc6355def22d9.tar.xz
gsoc2013-empathy-1a68a64be544af2b35f981bac45fc6355def22d9.tar.zst
gsoc2013-empathy-1a68a64be544af2b35f981bac45fc6355def22d9.zip
"ready & EMPATHY_CONTACT_READY_NAME" instead of ready | EMPATHY_CONTACT_READY_NAME
svn path=/trunk/; revision=1182
-rw-r--r--libempathy/empathy-contact.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c
index ad7d0472e..1c4f4d83a 100644
--- a/libempathy/empathy-contact.c
+++ b/libempathy/empathy-contact.c
@@ -749,7 +749,7 @@ contact_is_ready_func (GObject *contact,
/* When the name is NULL, empathy_contact_get_name() fallback to the id.
* When the caller want to wait the name to be ready, it also want to wait
* the id to be ready in case of fallback. */
- if ((ready | EMPATHY_CONTACT_READY_NAME) && G_STR_EMPTY (priv->name)) {
+ if ((ready & EMPATHY_CONTACT_READY_NAME) && G_STR_EMPTY (priv->name)) {
ready |= EMPATHY_CONTACT_READY_ID;
}