[evolution-data-server] Use guint for single bit bitfields



commit 85a67e1db8ed9039d01d4e178bf626b6d4bd91bf
Author: Kjartan Maraas <kmaraas gnome org>
Date:   Fri Sep 25 22:34:07 2009 +0200

    Use guint for single bit bitfields

 camel/camel-search-sql-sexp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/camel/camel-search-sql-sexp.c b/camel/camel-search-sql-sexp.c
index 3490085..a6d432d 100644
--- a/camel/camel-search-sql-sexp.c
+++ b/camel/camel-search-sql-sexp.c
@@ -559,7 +559,7 @@ sql_exp (struct _ESExp *f, gint argc, struct _ESExpResult **argv, gpointer data)
 static struct {
 	const gchar *name;
 	ESExpFunc *func;
-	gint immediate :1;
+	guint immediate :1;
 } symbols[] = {
 	{ "and", (ESExpFunc *) func_and, 1 },
 	{ "or", (ESExpFunc *) func_or, 1},



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