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

Commit 242f995c authored by Chris Manton's avatar Chris Manton Committed by Gerrit Code Review
Browse files

Merge "headless: Explicitly reference global bt_property_t"

parents 9abd9757 53c05f99
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -77,12 +77,12 @@ void adapter_state_changed(bt_state_t state) {
}
void adapter_properties([[maybe_unused]] bt_status_t status,
                        [[maybe_unused]] int num_properties,
                        [[maybe_unused]] bt_property_t* properties) {
                        [[maybe_unused]] ::bt_property_t* properties) {
  LOG_INFO("%s", __func__);
}

void remote_device_properties(bt_status_t status, RawAddress* bd_addr,
                              int num_properties, bt_property_t* properties) {
                              int num_properties, ::bt_property_t* properties) {
  CHECK(bd_addr != nullptr);
  const size_t num_callbacks = interface_api_callback_map_.size();
  auto callback_list = interface_api_callback_map_.find(__func__);
@@ -103,7 +103,7 @@ void remote_device_properties(bt_status_t status, RawAddress* bd_addr,
}

void device_found([[maybe_unused]] int num_properties,
                  [[maybe_unused]] bt_property_t* properties) {
                  [[maybe_unused]] ::bt_property_t* properties) {
  LOG_INFO("%s", __func__);
}