diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-08-11 11:41:26 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-08-11 11:41:26 +0800 |
commit | d5f9483b16cea64491eb5fe4eec815c61126849e (patch) | |
tree | 2d1b057170244697a8b4276af521d91f90d0726e /mail/message-list.c | |
parent | bef4579009b101276145fe263f8acea9ee50cf22 (diff) | |
download | gsoc2013-evolution-d5f9483b16cea64491eb5fe4eec815c61126849e.tar.gz gsoc2013-evolution-d5f9483b16cea64491eb5fe4eec815c61126849e.tar.zst gsoc2013-evolution-d5f9483b16cea64491eb5fe4eec815c61126849e.zip |
Fixed some warnings.
2000-08-10 Christopher James Lahey <clahey@helixcode.com>
* folder-browser-factory.c, message-list.c, message-thread.c,
session.c: Fixed some warnings.
svn path=/trunk/; revision=4722
Diffstat (limited to 'mail/message-list.c')
-rw-r--r-- | mail/message-list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index 51ca345953..b88bd5f735 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -283,7 +283,7 @@ ml_tree_value_at (ETreeModel *etm, ETreePath *path, int col, void *model_data) return GINT_TO_POINTER(!(msg_info->flags & CAMEL_MESSAGE_SEEN)); case COL_COLOUR: - return camel_tag_get(&msg_info->user_tags, "colour"); + return (void *) camel_tag_get((CamelTag **) &msg_info->user_tags, "colour"); } g_assert_not_reached (); |