diff options
author | Travis Reitter <treitter@gmail.com> | 2010-07-10 08:08:04 +0800 |
---|---|---|
committer | Travis Reitter <treitter@gmail.com> | 2010-07-21 07:12:37 +0800 |
commit | 4705170690b772c5c4ee375926272fd178a2fd19 (patch) | |
tree | a1df07f46e625158c3285df2a151d2d88debb8f6 | |
parent | b2dd6cd0f905bc78c678ea1206de81193fcadebc (diff) | |
download | gsoc2013-empathy-4705170690b772c5c4ee375926272fd178a2fd19.tar gsoc2013-empathy-4705170690b772c5c4ee375926272fd178a2fd19.tar.gz gsoc2013-empathy-4705170690b772c5c4ee375926272fd178a2fd19.tar.bz2 gsoc2013-empathy-4705170690b772c5c4ee375926272fd178a2fd19.tar.lz gsoc2013-empathy-4705170690b772c5c4ee375926272fd178a2fd19.tar.xz gsoc2013-empathy-4705170690b772c5c4ee375926272fd178a2fd19.tar.zst gsoc2013-empathy-4705170690b772c5c4ee375926272fd178a2fd19.zip |
Enclose a non-trivial expression in () in an assignment.
-rw-r--r-- | libempathy-gtk/empathy-individual-store.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-individual-store.c b/libempathy-gtk/empathy-individual-store.c index 7c625e8ef..8f969c0b1 100644 --- a/libempathy-gtk/empathy-individual-store.c +++ b/libempathy-gtk/empathy-individual-store.c @@ -1797,7 +1797,7 @@ individual_store_get_individual_status_icon_with_icon_name ( break; } - show_protocols_here = priv->show_protocols && (contact_count == 1); + show_protocols_here = (priv->show_protocols && (contact_count == 1)); if (show_protocols_here) { contact = empathy_contact_dup_from_folks_individual (individual); |