Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 75d14c33 authored by Nicu Pavel's avatar Nicu Pavel
Browse files

Use proper type for oob variable in register_agent.

Without this change the BluetoothEventLoop crashes on my armv5 arch board.

Change-Id: Ia10382f0aea4736be268512ccf9d5c5cde052851
parent 9c4ba258
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -311,7 +311,7 @@ static int register_agent(native_data_t *nat,
{
{
    DBusMessage *msg, *reply;
    DBusMessage *msg, *reply;
    DBusError err;
    DBusError err;
    bool oob = TRUE;
    dbus_bool_t oob = TRUE;


    if (!dbus_connection_register_object_path(nat->conn, agent_path,
    if (!dbus_connection_register_object_path(nat->conn, agent_path,
            &agent_vtable, nat)) {
            &agent_vtable, nat)) {