diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-06-19 20:47:56 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-06-19 20:47:56 +0800 |
commit | efed177893aecde7f1fcadd4f776afdafb66ad4f (patch) | |
tree | be5b4d4b49dc8e23dd6dfdb11559d1e69cba31c0 /libempathy | |
parent | f936a00643151850a792d086d2c7f59e6fcab123 (diff) | |
download | gsoc2013-empathy-efed177893aecde7f1fcadd4f776afdafb66ad4f.tar gsoc2013-empathy-efed177893aecde7f1fcadd4f776afdafb66ad4f.tar.gz gsoc2013-empathy-efed177893aecde7f1fcadd4f776afdafb66ad4f.tar.bz2 gsoc2013-empathy-efed177893aecde7f1fcadd4f776afdafb66ad4f.tar.lz gsoc2013-empathy-efed177893aecde7f1fcadd4f776afdafb66ad4f.tar.xz gsoc2013-empathy-efed177893aecde7f1fcadd4f776afdafb66ad4f.tar.zst gsoc2013-empathy-efed177893aecde7f1fcadd4f776afdafb66ad4f.zip |
Fix coding style
svn path=/trunk/; revision=1181
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-contact.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c index f84dff4a1..ad7d0472e 100644 --- a/libempathy/empathy-contact.c +++ b/libempathy/empathy-contact.c @@ -749,9 +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; } |