[Commits] [SCM] claws branch, master, updated. 3.11.1-119-gbd68b59

mones at claws-mail.org mones at claws-mail.org
Sat Jun 6 03:10:37 CEST 2015


The branch, master has been updated
       via  bd68b59f018977e29f122aea928068c44b118b1f (commit)
      from  3227621a743631d9ad332419f5422d1280502b31 (commit)

Summary of changes:
 src/imap.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


- Log -----------------------------------------------------------------
commit bd68b59f018977e29f122aea928068c44b118b1f
Author: Ricardo Mones <ricardo at mones.org>
Date:   Sat Jun 6 03:09:31 2015 +0200

    And other format warning less
    
    • imap.c:4832:8: warning: format ‘%d’ expects argument of type ‘int’,
      but argument 9 has type ‘time_t’ [-Wformat=]

diff --git a/src/imap.c b/src/imap.c
index 81c4bb0..606da64 100644
--- a/src/imap.c
+++ b/src/imap.c
@@ -4827,9 +4827,9 @@ gboolean imap_scan_required(Folder *folder, FolderItem *_item)
 		debug_print("exists %d, item->item.total_msgs %d\n"
 			    "\tunseen %d, item->item.unread_msgs %d\n"
 			    "\tuid_next %d, item->uid_next %d\n"
-			    "\tuid_val %d, item->item.mtime %d\n", 
-			    exists, item->item.total_msgs,unseen, item->item.unread_msgs,
-			    uid_next, item->uid_next,uid_val, item->item.mtime);
+			    "\tuid_val %d, item->item.mtime %ld\n",
+			    exists, item->item.total_msgs, unseen, item->item.unread_msgs,
+			    uid_next, item->uid_next, uid_val, (long)(item->item.mtime));
 		if (exists != item->item.total_msgs
 		    || unseen != item->item.unread_msgs 
 		    || uid_next != item->uid_next

-----------------------------------------------------------------------


hooks/post-receive
-- 
Claws Mail


More information about the Commits mailing list