diff options
author | João Paulo Rechi Vita <jprvita@openbossa.org> | 2013-03-27 10:45:32 -0300 |
---|---|---|
committer | Tanu Kaskinen <tanuk@iki.fi> | 2013-03-28 13:21:47 +0200 |
commit | 2f32583027afea09fbd5c2e571309bf3f543a3c1 (patch) | |
tree | 7532d0f981026b3c8c2a58441e955c49f21e22c1 | |
parent | 4c388237dac954ce3e6fff3af04c3225990ab7f5 (diff) |
bluetooth: Remove unnecessary braces
-rw-r--r-- | src/modules/bluetooth/bluetooth-util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/bluetooth/bluetooth-util.c b/src/modules/bluetooth/bluetooth-util.c index 5e4b77b1..81cbf9bd 100644 --- a/src/modules/bluetooth/bluetooth-util.c +++ b/src/modules/bluetooth/bluetooth-util.c @@ -1631,11 +1631,11 @@ static DBusHandlerResult endpoint_handler(DBusConnection *c, DBusMessage *m, voi DBUS_TYPE_STRING, &xml, DBUS_TYPE_INVALID)); - } else if (dbus_message_is_method_call(m, "org.bluez.MediaEndpoint", "SetConfiguration")) { + } else if (dbus_message_is_method_call(m, "org.bluez.MediaEndpoint", "SetConfiguration")) r = endpoint_set_configuration(c, m, userdata); - } else if (dbus_message_is_method_call(m, "org.bluez.MediaEndpoint", "SelectConfiguration")) { + else if (dbus_message_is_method_call(m, "org.bluez.MediaEndpoint", "SelectConfiguration")) r = endpoint_select_configuration(c, m, userdata); - } else if (dbus_message_is_method_call(m, "org.bluez.MediaEndpoint", "ClearConfiguration")) + else if (dbus_message_is_method_call(m, "org.bluez.MediaEndpoint", "ClearConfiguration")) r = endpoint_clear_configuration(c, m, userdata); else return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; |