Skip to content

Commit c6dc9a3

Browse files
committed
Fix compiler warning.
1 parent 85349de commit c6dc9a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/semtech_udp/structs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ impl RxPk {
485485
let uplink_id = if cfg!(test) { 123 } else { rng.gen::<u32>() };
486486

487487
let mut pl = pl.clone();
488-
let mut rx_info = pl.rx_info.as_mut().unwrap();
488+
let rx_info = pl.rx_info.as_mut().unwrap();
489489
rx_info.uplink_id = uplink_id;
490490

491491
rx_info.antenna = rs.ant.into();

0 commit comments

Comments
 (0)