[evolution-data-server/gnome-2-30] Use correct format specifier for 64bit unsigned int (cherry picked from commit 035e8869fa12c04afb622



commit 9e82250c84c0aac40f1d63b707a979b79bb823f6
Author: Milan Crha <mcrha redhat com>
Date:   Fri Jul 9 09:34:18 2010 +0200

    Use correct format specifier for 64bit unsigned int
    (cherry picked from commit 035e8869fa12c04afb62202efa703eb3b87fa974)

 camel/providers/imapx/camel-imapx-server.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/camel/providers/imapx/camel-imapx-server.c b/camel/providers/imapx/camel-imapx-server.c
index 2e61b82..9d0f7a1 100644
--- a/camel/providers/imapx/camel-imapx-server.c
+++ b/camel/providers/imapx/camel-imapx-server.c
@@ -3819,12 +3819,12 @@ imapx_job_refresh_info_start (CamelIMAPXServer *is, CamelIMAPXJob *job)
 		if (total != ifolder->exists_on_server ||
 		    folder->summary->unread_count != ifolder->unread_on_server ||
 		    (isum->modseq != ifolder->modseq_on_server)) {
-			c(printf("Eep, after QRESYNC we're out of sync. total %u / %u, unread %u / %u, modseq %lu / %lu\n",
+			c(printf("Eep, after QRESYNC we're out of sync. total %u / %u, unread %u / %u, modseq %" G_GUINT64_FORMAT " / %" G_GUINT64_FORMAT "\n",
 				 total, ifolder->exists_on_server,
 				 folder->summary->unread_count, ifolder->unread_on_server,
 				 isum->modseq, ifolder->modseq_on_server));
 		} else {
-			c(printf("OK, after QRESYNC we're still in sync. total %u / %u, unread %u / %u, modseq %lu / %lu\n",
+			c(printf("OK, after QRESYNC we're still in sync. total %u / %u, unread %u / %u, modseq %" G_GUINT64_FORMAT " / %" G_GUINT64_FORMAT "\n",
 				 total, ifolder->exists_on_server,
 				 folder->summary->unread_count, ifolder->unread_on_server,
 				 isum->modseq, ifolder->modseq_on_server));



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]