Skip to content

Commit 807788f

Browse files
author
Bryant Mairs
committed
Remove unnecessary '@ _'
1 parent f6030bd commit 807788f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sys/termios.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ impl From<libc::speed_t> for BaudRate {
349349
B3500000 => BaudRate::B3500000,
350350
#[cfg(any(target_os = "android", target_os = "linux"))]
351351
B4000000 => BaudRate::B4000000,
352-
b @ _ => unreachable!("Invalid baud constant: {}", b),
352+
b => unreachable!("Invalid baud constant: {}", b),
353353
}
354354
}
355355
}

0 commit comments

Comments
 (0)