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

Commit 8e0e9d93 authored by Chris Wailes's avatar Chris Wailes
Browse files

Fix errors from rustc 1.71.0

Bug: 288268986
Test: m rust
Change-Id: Ia6555a46e87f2072cf015889cf3f6c37579558d2
parent b9052671
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -94,7 +94,7 @@ impl GattDatastore for GattService {
                })?;
            let mut clients = self.clients.borrow_mut();
            let state = clients.get_mut(&tcb_idx);
            let Some(mut state) = state else {
            let Some(state) = state else {
                error!("Received write request from disconnected client...");
                return Err(AttErrorCode::UNLIKELY_ERROR);
            };