aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-folder-thread.c
diff options
context:
space:
mode:
authorMichael Zucci <zucchi@src.gnome.org>2001-01-12 11:43:53 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-01-12 11:43:53 +0800
commit01a5bc2c2c4ff45929078632294d53660d6263ee (patch)
tree0dfe0427ec3b96172fd8eef741b4f7bc295d4755 /camel/camel-folder-thread.c
parentc9246a157e1dae8c34a6559f75fa47883debe40f (diff)
downloadgsoc2013-evolution-01a5bc2c2c4ff45929078632294d53660d6263ee.tar
gsoc2013-evolution-01a5bc2c2c4ff45929078632294d53660d6263ee.tar.gz
gsoc2013-evolution-01a5bc2c2c4ff45929078632294d53660d6263ee.tar.bz2
gsoc2013-evolution-01a5bc2c2c4ff45929078632294d53660d6263ee.tar.lz
gsoc2013-evolution-01a5bc2c2c4ff45929078632294d53660d6263ee.tar.xz
gsoc2013-evolution-01a5bc2c2c4ff45929078632294d53660d6263ee.tar.zst
gsoc2013-evolution-01a5bc2c2c4ff45929078632294d53660d6263ee.zip
(camel_folder_thread_messages_new): Added casts to rmeove some
warnings for the analites out there. svn path=/trunk/; revision=7426
Diffstat (limited to 'camel/camel-folder-thread.c')
-rw-r--r--camel/camel-folder-thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-folder-thread.c b/camel/camel-folder-thread.c
index 2e71189946..2e84e73767 100644
--- a/camel/camel-folder-thread.c
+++ b/camel/camel-folder-thread.c
@@ -537,7 +537,7 @@ camel_folder_thread_messages_new(CamelFolder *folder, GPtrArray *uids)
sort_thread(&head);
/* remove any phantom nodes, this could possibly be put in group_root_set()? */
- c = &head;
+ c = (CamelFolderThreadNode *)&head;
while (c->next) {
CamelFolderThreadNode *scan, *newtop;
@@ -548,7 +548,7 @@ camel_folder_thread_messages_new(CamelFolder *folder, GPtrArray *uids)
c->next = newtop;
/* link its siblings onto the end of its children */
- scan = &newtop->child;
+ scan = (CamelFolderThreadNode *)&newtop->child;
while (scan->next)
scan = scan->next;
scan->next = newtop->next;