[evolution-data-server/gnome-2-30] Fix compiler warning.



commit c093e186d41ae5f2b8b2cdb6147f76c9cdd4e19f
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 bd2bb9a..0fdd84e 100644
--- a/camel/providers/local/camel-mbox-summary.c
+++ b/camel/providers/local/camel-mbox-summary.c
@@ -485,7 +485,7 @@ message_info_to_db(CamelFolderSummary *s, CamelMessageInfo *info)
 	struct _CamelMIRecord *mir;
 
 	mir = ((CamelFolderSummaryClass *)camel_mbox_summary_parent)->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]