aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-individual-store.c
diff options
context:
space:
mode:
authorTravis Reitter <treitter@gmail.com>2010-07-08 10:22:15 +0800
committerTravis Reitter <treitter@gmail.com>2010-07-21 07:12:36 +0800
commit7473d7a97d02be9aeefa271269184485ddf460a4 (patch)
tree28947f297e03ec2a0098b72e373381e65163f6de /libempathy-gtk/empathy-individual-store.c
parenta854cb126541cda286f4f48d2962c43e3be8a4f5 (diff)
downloadgsoc2013-empathy-7473d7a97d02be9aeefa271269184485ddf460a4.tar
gsoc2013-empathy-7473d7a97d02be9aeefa271269184485ddf460a4.tar.gz
gsoc2013-empathy-7473d7a97d02be9aeefa271269184485ddf460a4.tar.bz2
gsoc2013-empathy-7473d7a97d02be9aeefa271269184485ddf460a4.tar.lz
gsoc2013-empathy-7473d7a97d02be9aeefa271269184485ddf460a4.tar.xz
gsoc2013-empathy-7473d7a97d02be9aeefa271269184485ddf460a4.tar.zst
gsoc2013-empathy-7473d7a97d02be9aeefa271269184485ddf460a4.zip
Use explicit boolean expressions for if-conditionals, according to Telepathy style.
Diffstat (limited to 'libempathy-gtk/empathy-individual-store.c')
-rw-r--r--libempathy-gtk/empathy-individual-store.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-individual-store.c b/libempathy-gtk/empathy-individual-store.c
index b47b310cc..87fa80083 100644
--- a/libempathy-gtk/empathy-individual-store.c
+++ b/libempathy-gtk/empathy-individual-store.c
@@ -269,7 +269,7 @@ individual_store_find_contact_foreach (GtkTreeModel *model,
fc->iters = g_list_append (fc->iters, gtk_tree_iter_copy (iter));
}
- if (individual)
+ if (individual != NULL)
{
g_object_unref (individual);
}