From 75d14c33d795621988a1df173d3d69abe0b6c8f4 Mon Sep 17 00:00:00 2001 From: Nicu Pavel Date: Thu, 5 May 2011 13:11:12 +0300 Subject: Use proper type for oob variable in register_agent. Without this change the BluetoothEventLoop crashes on my armv5 arch board. Change-Id: Ia10382f0aea4736be268512ccf9d5c5cde052851 --- core/jni/android_server_BluetoothEventLoop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/jni/android_server_BluetoothEventLoop.cpp b/core/jni/android_server_BluetoothEventLoop.cpp index d8e049dd3be2..de003dfff9e5 100644 --- a/core/jni/android_server_BluetoothEventLoop.cpp +++ b/core/jni/android_server_BluetoothEventLoop.cpp @@ -311,7 +311,7 @@ static int register_agent(native_data_t *nat, { DBusMessage *msg, *reply; DBusError err; - bool oob = TRUE; + dbus_bool_t oob = TRUE; if (!dbus_connection_register_object_path(nat->conn, agent_path, &agent_vtable, nat)) { -- cgit v1.2.3-59-g8ed1b