[Telepathy-commits] [telepathy-glib/master] TestTextChannelNull: use unsigned for booleans in bitfields

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


---
 tests/lib/textchan-null.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/lib/textchan-null.c b/tests/lib/textchan-null.c
index 3ec87df..20ef3a5 100644
--- a/tests/lib/textchan-null.c
+++ b/tests/lib/textchan-null.c
@@ -45,8 +45,8 @@ struct _TestTextChannelNullPrivate
   gchar *object_path;
   TpHandle handle;
 
-  gboolean closed:1;
-  gboolean disposed:1;
+  unsigned closed:1;
+  unsigned disposed:1;
 };
 
 static void
-- 
1.5.6.5




More information about the Telepathy-commits mailing list