Skip to content

Commit 26de706

Browse files
committed
fix: compiler warnings
1 parent ef95e39 commit 26de706

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/transport/usb.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ impl UsbTransport {
5555
))?;
5656
log::debug!("Found USB Device {:?}", device);
5757

58-
let mut device_handle = match device.open() {
58+
let device_handle = match device.open() {
5959
Ok(handle) => handle,
6060
#[cfg(target_os = "windows")]
6161
Err(rusb::Error::NotSupported) => {

0 commit comments

Comments
 (0)