summaryrefslogtreecommitdiff
path: root/telepathy-glib/connection-manager.h
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2008-10-15 10:41:55 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2008-10-15 10:41:55 +0100
commitdf16a03c707f54e0fe96a189ec490174a73e495d (patch)
treea9c6e24c0ecf18b3d29e8d8d3560f60610a645b0 /telepathy-glib/connection-manager.h
parent62b5541ce5bcc50c1c03ebebeba00f80b8951fd4 (diff)
downloadtelepathy-glib-df16a03c707f54e0fe96a189ec490174a73e495d.tar.gz
TpConnectionManager: use unsigned for booleans in bitfields
Diffstat (limited to 'telepathy-glib/connection-manager.h')
-rw-r--r--telepathy-glib/connection-manager.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/telepathy-glib/connection-manager.h b/telepathy-glib/connection-manager.h
index 4e0fd52f3..d7b498c1f 100644
--- a/telepathy-glib/connection-manager.h
+++ b/telepathy-glib/connection-manager.h
@@ -87,8 +87,9 @@ struct _TpConnectionManager {
const gchar *name;
const TpConnectionManagerProtocol * const *protocols;
- gboolean running:1;
- gboolean always_introspect:1;
+ /* These are really booleans, but gboolean is signed. Thanks, GLib */
+ unsigned running:1;
+ unsigned always_introspect:1;
TpCMInfoSource info_source:2;
guint reserved_flags:28;