[evolution-data-server] Fix compiler warning.



commit 777c55b67ea450834e53faf72fa6b325c9347071
Author: Matthew Barnes <mbarnes redhat com>
Date:   Sat May 22 07:55:08 2010 -0400

    Fix compiler warning.

 camel/providers/local/camel-mbox-summary.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/camel/providers/local/camel-mbox-summary.c b/camel/providers/local/camel-mbox-summary.c
index eada970..4dd5ced 100644
--- a/camel/providers/local/camel-mbox-summary.c
+++ b/camel/providers/local/camel-mbox-summary.c
@@ -451,7 +451,7 @@ message_info_to_db(CamelFolderSummary *s, CamelMessageInfo *info)
 	struct _CamelMIRecord *mir;
 
 	mir = CAMEL_FOLDER_SUMMARY_CLASS (camel_mbox_summary_parent_class)->message_info_to_db(s, info);
-	mir->bdata = g_strdup_printf("%lu", mbi->frompos);
+	mir->bdata = g_strdup_printf("%" G_GOFFSET_FORMAT, mbi->frompos);
 
 	return mir;
 }



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