[evolution-data-server] Make 1-bit bitfields guint
- From: Kjartan Maraas <kmaraas src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [evolution-data-server] Make 1-bit bitfields guint
- Date: Fri, 25 Sep 2009 20:19:28 +0000 (UTC)
commit 1da7c4fb01415f0d59d85a66a9f86e8956f6bf00
Author: Kjartan Maraas <kmaraas gnome org>
Date: Fri Sep 25 22:19:21 2009 +0200
Make 1-bit bitfields guint
camel/camel-folder-summary.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/camel/camel-folder-summary.h b/camel/camel-folder-summary.h
index 560a882..9f771cb 100644
--- a/camel/camel-folder-summary.h
+++ b/camel/camel-folder-summary.h
@@ -152,7 +152,7 @@ struct _CamelMessageInfo {
guint32 refcount; /* ??? */
const gchar *uid;
/*FIXME: Make it work with the CAMEL_MESSADE_DB_DIRTY flag instead of another 4 bytes*/
- gint dirty:1;
+ guint dirty:1;
};
/* For classes wishing to do the provided i/o, or for anonymous users,
@@ -164,7 +164,7 @@ struct _CamelMessageInfoBase {
guint32 refcount; /* ??? */
const gchar *uid;
/*FIXME: Make it work with the CAMEL_MESSADE_DB_DIRTY flag instead of another 4 bytes*/
- gint dirty:1;
+ guint dirty:1;
const gchar *subject;
const gchar *from;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]