diff options
author | Harish Krishnaswamy <kharish@src.gnome.org> | 2005-01-11 12:19:45 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2005-01-11 12:19:45 +0800 |
commit | f66d06bd89b397722121ab940fb83a4986400bb7 (patch) | |
tree | d8ec4bdf2521ac2d1fb78322062905f78c655af1 /plugins/itip-formatter | |
parent | 1b5ef38f5f2e71c3ea39b102b965dd0760c868e5 (diff) | |
download | gsoc2013-evolution-f66d06bd89b397722121ab940fb83a4986400bb7.tar.gz gsoc2013-evolution-f66d06bd89b397722121ab940fb83a4986400bb7.tar.zst gsoc2013-evolution-f66d06bd89b397722121ab940fb83a4986400bb7.zip |
Fixed a compiler warning.
* itip-formatter.c (update_item): Fixed a compiler warning.
svn path=/trunk/; revision=28347
Diffstat (limited to 'plugins/itip-formatter')
-rw-r--r-- | plugins/itip-formatter/ChangeLog | 4 | ||||
-rw-r--r-- | plugins/itip-formatter/itip-formatter.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/plugins/itip-formatter/ChangeLog b/plugins/itip-formatter/ChangeLog index e064175b13..5a782b465b 100644 --- a/plugins/itip-formatter/ChangeLog +++ b/plugins/itip-formatter/ChangeLog @@ -1,3 +1,7 @@ +2005-01-11 Harish Krishnaswamy <kharish@novell.com> + + * itip-formatter.c (update_item): Fixed a compiler warning. + 2005-01-10 JP Rosevear <jpr@novell.com> * itip-formatter.c (update_item): set to the new items, duh diff --git a/plugins/itip-formatter/itip-formatter.c b/plugins/itip-formatter/itip-formatter.c index 2a96a1f60f..5b2f076f96 100644 --- a/plugins/itip-formatter/itip-formatter.c +++ b/plugins/itip-formatter/itip-formatter.c @@ -705,7 +705,7 @@ update_item (FormatItipPObject *pitip, ItipViewResponse response) CamelMimeMessage *msg = ((EMFormat *) pitip->pobject.format)->message; e_cal_component_get_attachment_list (clone_comp, &attachments); - g_message ("Number of attachments is %d", g_list_length (attachments)); + g_message ("Number of attachments is %d", g_slist_length (attachments)); for (l = attachments; l; l = l->next) { GSList *parts = NULL, *m; |