aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-folder-tree.c
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@novell.com>2008-07-29 12:32:54 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2008-07-29 12:32:54 +0800
commitccc4dcef466183a1e374a1edb83b1b4c5969f3ed (patch)
tree7b9e8f97a7622c2d26f6b8e3676170976c8893af /mail/em-folder-tree.c
parent2f6960df9a3ca02d5578d7e6d68d3b369aff2b85 (diff)
downloadgsoc2013-evolution-ccc4dcef466183a1e374a1edb83b1b4c5969f3ed.tar
gsoc2013-evolution-ccc4dcef466183a1e374a1edb83b1b4c5969f3ed.tar.gz
gsoc2013-evolution-ccc4dcef466183a1e374a1edb83b1b4c5969f3ed.tar.bz2
gsoc2013-evolution-ccc4dcef466183a1e374a1edb83b1b4c5969f3ed.tar.lz
gsoc2013-evolution-ccc4dcef466183a1e374a1edb83b1b4c5969f3ed.tar.xz
gsoc2013-evolution-ccc4dcef466183a1e374a1edb83b1b4c5969f3ed.tar.zst
gsoc2013-evolution-ccc4dcef466183a1e374a1edb83b1b4c5969f3ed.zip
Kill a compilation warning.
2008-07-29 Srinivasa Ragavan <sragavan@novell.com> * mail/em-folder-tree.c: Kill a compilation warning. svn path=/trunk/; revision=35857
Diffstat (limited to 'mail/em-folder-tree.c')
-rw-r--r--mail/em-folder-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c
index 8a44373338..6140ee5bbd 100644
--- a/mail/em-folder-tree.c
+++ b/mail/em-folder-tree.c
@@ -1777,7 +1777,7 @@ emft_get_folder_info__done (struct _EMFolderTreeGetFolderInfo *m)
/* Traverse to the last valid iter */
titer = iter;
- while (gtk_tree_model_iter_next(model, &iter))
+ while (gtk_tree_model_iter_next((GtkTreeModel *) model, &iter))
titer = iter; /* Preserve the last valid iter */
iter = titer;