diff -Nru dbus\dbus-connection.c dbus-new\dbus-connection.c --- dbus\dbus-connection.c Tue Jul 10 11:48:18 2007 +++ dbus-new\dbus-connection.c Tue Jul 10 11:50:22 2007 @@ -281,25 +281,25 @@ char *server_guid; /**< GUID of server if we are in shared_connections, #NULL if server GUID is unknown or connection is private */ - unsigned int shareable : 1; /**< #TRUE if libdbus owns a reference to the connection and can return it from dbus_connection_open() more than once */ + unsigned int shareable; /**< #TRUE if libdbus owns a reference to the connection and can return it from dbus_connection_open() more than once */ - unsigned int dispatch_acquired : 1; /**< Someone has dispatch path (can drain incoming queue) */ - unsigned int io_path_acquired : 1; /**< Someone has transport io path (can use the transport to read/write messages) */ + unsigned int dispatch_acquired; /**< Someone has dispatch path (can drain incoming queue) */ + unsigned int io_path_acquired; /**< Someone has transport io path (can use the transport to read/write messages) */ - unsigned int exit_on_disconnect : 1; /**< If #TRUE, exit after handling disconnect signal */ + unsigned int exit_on_disconnect; /**< If #TRUE, exit after handling disconnect signal */ - unsigned int route_peer_messages : 1; /**< If #TRUE, if org.freedesktop.DBus.Peer messages have a bus name, don't handle them automatically */ + unsigned int route_peer_messages; /**< If #TRUE, if org.freedesktop.DBus.Peer messages have a bus name, don't handle them automatically */ - unsigned int disconnected_message_arrived : 1; /**< We popped or are dispatching the disconnected message. + unsigned int disconnected_message_arrived; /**< We popped or are dispatching the disconnected message. * if the disconnect_message_link is NULL then we queued it, but * this flag is whether it got to the head of the queue. */ - unsigned int disconnected_message_processed : 1; /**< We did our default handling of the disconnected message, + unsigned int disconnected_message_processed; /**< We did our default handling of the disconnected message, * such as closing the connection. */ #ifndef DBUS_DISABLE_CHECKS - unsigned int have_connection_lock : 1; /**< Used to check locking */ + unsigned int have_connection_lock; /**< Used to check locking */ #endif #ifndef DBUS_DISABLE_CHECKS