summaryrefslogtreecommitdiff
path: root/offload
diff options
context:
space:
mode:
author Chris Wailes <chriswailes@google.com> 2025-01-27 17:03:35 -0800
committer Chris Wailes <chriswailes@google.com> 2025-01-27 17:03:35 -0800
commit792fd94d5485cdc2e8f22d7311ad407f7dbd5351 (patch)
treebbcc37eff30dda32a056aa63b3fcbe4f2ed81f17 /offload
parenta99c4f46c1f7538b669d675198455eab30c51fa1 (diff)
Update code for Rust 1.83.0
Test: m rust Bug: 384401387 Change-Id: I06c7fd743b89bbd2682de81c0421f83300c93dd0
Diffstat (limited to 'offload')
-rw-r--r--offload/hci/data.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/offload/hci/data.rs b/offload/hci/data.rs
index 0e20e82029..bb4a452a59 100644
--- a/offload/hci/data.rs
+++ b/offload/hci/data.rs
@@ -120,7 +120,7 @@ impl<'a> IsoData<'a> {
}
}
-impl<'a> Write for IsoData<'a> {
+impl Write for IsoData<'_> {
fn write(&self, w: &mut Writer) {
let (pb_flag, hdr) = match self.sdu_fragment {
IsoSduFragment::First { ref hdr, is_last: false } => (0b00, Some(hdr)),