2006-09-30 Havoc Pennington <hp@redhat.com>
authorHavoc Pennington <hp@redhat.com>
Sun, 1 Oct 2006 03:34:21 +0000 (03:34 +0000)
committerHavoc Pennington <hp@redhat.com>
Sun, 1 Oct 2006 03:34:21 +0000 (03:34 +0000)
* dbus/dbus-bus.c (dbus_bus_get_private, dbus_bus_get)
(internal_bus_get): fix screwy code formatting. whoever committed
that was not paying attention!

ChangeLog
dbus/dbus-bus.c

index d9bf6aa..fbba11a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2006-09-30  Havoc Pennington  <hp@redhat.com>
 
+       * dbus/dbus-bus.c (dbus_bus_get_private, dbus_bus_get) 
+       (internal_bus_get): fix screwy code formatting. whoever committed
+       that was not paying attention!
+
+2006-09-30  Havoc Pennington  <hp@redhat.com>
+
        * configure.in (LT_CURRENT, LT_AGE): increment current and age to
        reflect addition of interfaces.
 
index eb6b3ab..a233678 100644 (file)
@@ -338,7 +338,8 @@ _dbus_bus_check_connection_and_unref_unlocked (DBusConnection *connection)
 
 static DBusConnection *
 internal_bus_get (DBusBusType  type,
-             DBusError   *error, dbus_bool_t private)
+                  dbus_bool_t  private,
+                  DBusError   *error)
 {
   const char *address;
   DBusConnection *connection;
@@ -453,8 +454,9 @@ internal_bus_get (DBusBusType  type,
  */
 DBusConnection *
 dbus_bus_get (DBusBusType  type,
-             DBusError   *error) {
-  return internal_bus_get(type, error, FALSE);
+             DBusError   *error)
+{
+  return internal_bus_get (type, FALSE, error);
 }
 
 /**
@@ -469,8 +471,9 @@ dbus_bus_get (DBusBusType  type,
  */
 DBusConnection *
 dbus_bus_get_private (DBusBusType  type,
-             DBusError   *error) {
-  return internal_bus_get(type, error, TRUE);
+                      DBusError   *error)
+{
+  return internal_bus_get (type, TRUE, error);
 }
 
 /**