[Telepathy-commits] [telepathy-glib/master] TpBaseConnection: use unsigned, not gboolean, for booleans in bitfields

Simon McVittie simon.mcvittie at collabora.co.uk
Wed Oct 15 02:41:19 PDT 2008


---
 telepathy-glib/base-connection.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/telepathy-glib/base-connection.c b/telepathy-glib/base-connection.c
index b640f2b..02de757 100644
--- a/telepathy-glib/base-connection.c
+++ b/telepathy-glib/base-connection.c
@@ -303,13 +303,13 @@ struct _ChannelRequest
   guint handle_type;
   guint handle;
   /* always TRUE for CREATE; always FALSE for ENSURE */
-  gboolean suppress_handler : 1;
+  unsigned suppress_handler : 1;
 
   /* only meaningful for METHOD_ENSURE_CHANNEL; only true if this is the first
    * request to be satisfied with a particular channel, and no other request
    * satisfied by that channel has a different method.
    */
-  gboolean yours : 1;
+  unsigned yours : 1;
 };
 
 static ChannelRequest *
-- 
1.5.6.5




More information about the Telepathy-commits mailing list