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

Commit 7d9b2546 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "floss: fix build breakage"

parents c1fe5e0e 577efe11
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -101,7 +101,7 @@ impl BtCallback {
}

impl IBluetoothCallback for BtCallback {
    fn on_adapter_property_changed(&self, prop: BtPropertyType) {}
    fn on_adapter_property_changed(&self, _prop: BtPropertyType) {}

    fn on_address_changed(&self, addr: String) {
        print_info!("Address changed to {}", &addr);
+1 −1
Original line number Diff line number Diff line
@@ -682,7 +682,7 @@ impl BtifBluetoothCallbacks for Bluetooth {
                _ => {}
            }

            self.properties.insert(prop.get_type(), prop);
            self.properties.insert(prop.get_type(), prop.clone());

            self.for_all_callbacks(|callback| {
                callback.on_adapter_property_changed(prop.get_type());