From eef10bc3c4b0a084477e713963d0a3121d652e3c Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Sun, 1 Oct 2006 03:34:21 +0000 Subject: 2006-09-30 Havoc Pennington * 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! --- dbus/dbus-bus.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'dbus') diff --git a/dbus/dbus-bus.c b/dbus/dbus-bus.c index eb6b3ab3..a2336786 100644 --- a/dbus/dbus-bus.c +++ b/dbus/dbus-bus.c @@ -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); } /** -- cgit