[Telepathy-commits] [telepathy-gabble/master] GabbleMucChannel: use unsigned for boolean bitfields
Simon McVittie
simon.mcvittie at collabora.co.uk
Wed Oct 15 02:37:40 PDT 2008
---
src/muc-channel.c | 9 ++++-----
1 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/src/muc-channel.c b/src/muc-channel.c
index d0c2311..12b6b2f 100644
--- a/src/muc-channel.c
+++ b/src/muc-channel.c
@@ -242,12 +242,11 @@ struct _GabbleMucChannelPrivate
TpPropertiesContext *properties_ctx;
- gboolean ready:1;
+ unsigned ready:1;
+ unsigned closed:1;
+ unsigned dispose_has_run:1;
+ unsigned invited:1;
- gboolean closed:1;
- gboolean dispose_has_run:1;
-
- gboolean invited:1;
gchar *invitation_message;
/* Aggregate all presences when joining the chatroom */
--
1.5.6.5
More information about the Telepathy-commits
mailing list