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

Commit 577efe11 authored by Katherine Lai's avatar Katherine Lai
Browse files

floss: fix build breakage

Fixes commit 52665069.

Bug: 233184735
Tag: #floss
Test: Floss builds
Change-Id: I6189a506389440e6d8060b3c1067eac9c0df3dd3
parent 7b55e13d
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());