aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorTravis Reitter <treitter@gmail.com>2010-07-02 01:23:25 +0800
committerTravis Reitter <treitter@gmail.com>2010-07-21 07:12:36 +0800
commite557b1763dc2f454695bceeb84db3d8931dde759 (patch)
tree2dafff1ea6262d3082159961643703b58b1243e6 /libempathy
parent2fcee569ba4bf86f78b6b5d6c12bfeeecbb1c47e (diff)
downloadgsoc2013-empathy-e557b1763dc2f454695bceeb84db3d8931dde759.tar
gsoc2013-empathy-e557b1763dc2f454695bceeb84db3d8931dde759.tar.gz
gsoc2013-empathy-e557b1763dc2f454695bceeb84db3d8931dde759.tar.bz2
gsoc2013-empathy-e557b1763dc2f454695bceeb84db3d8931dde759.tar.lz
gsoc2013-empathy-e557b1763dc2f454695bceeb84db3d8931dde759.tar.xz
gsoc2013-empathy-e557b1763dc2f454695bceeb84db3d8931dde759.tar.zst
gsoc2013-empathy-e557b1763dc2f454695bceeb84db3d8931dde759.zip
Fix trivial casting error.
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-individual-manager.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy/empathy-individual-manager.c b/libempathy/empathy-individual-manager.c
index c2c2eefae..db994327f 100644
--- a/libempathy/empathy-individual-manager.c
+++ b/libempathy/empathy-individual-manager.c
@@ -352,7 +352,8 @@ empathy_individual_manager_remove_group (EmpathyIndividualManager *manager,
/* Remove every individual from the group */
individuals = folks_individual_aggregator_get_individuals (priv->aggregator);
- g_hash_table_foreach (individuals, (GHFunc) remove_group_cb, group);
+ g_hash_table_foreach (individuals, (GHFunc) remove_group_cb,
+ (gpointer) group);
}
EmpathyIndividualManagerFlags