OSDN Git Service

Merge "Remove headers from LOCAL_SRC_FILES"
authorDan Willemsen <dwillemsen@google.com>
Wed, 27 Jan 2016 00:39:03 +0000 (00:39 +0000)
committerandroid-build-merger <android-build-merger@google.com>
Wed, 27 Jan 2016 00:39:03 +0000 (00:39 +0000)
am: 927d624e5f

* commit '927d624e5fd9667cf885ad4e997737a5c363ac1b':
  Remove headers from LOCAL_SRC_FILES

btif/src/bluetooth.c
service/ipc/binder/bluetooth_binder_server.cpp

index 160a8d3..630766e 100644 (file)
@@ -321,7 +321,7 @@ static int read_energy_info()
     return BT_STATUS_SUCCESS;
 }
 
-static void dump(int fd)
+static void dump(int fd, UNUSED_ATTR const char **arguments)
 {
     btif_debug_dump(fd);
     alarm_debug_dump(fd);
index b3579ff..7b216ca 100644 (file)
@@ -167,7 +167,7 @@ android::status_t BluetoothBinderServer::dump(int fd, const android::Vector<andr
   }
   // TODO (jamuraa): enumerate profiles and dump profile information
   const bt_interface_t *iface = bluetooth::hal::BluetoothInterface::Get()->GetHALInterface();
-  iface->dump(fd);
+  iface->dump(fd, NULL);
   return android::NO_ERROR;
 }