Skip to content

Commit b71a962

Browse files
committed
[#390] Fix clippy warning
1 parent 49c13fd commit b71a962

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iceoryx2-pal/posix/src/windows/select.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pub unsafe fn select(
3030
let now = Instant::now();
3131

3232
// infinite blocking means on windows 10 years
33-
let mut timeout_alt = if timeout.is_null() {
33+
let timeout_alt = if timeout.is_null() {
3434
timeval {
3535
tv_sec: 3600 * 24 * 365,
3636
tv_usec: 0,

0 commit comments

Comments
 (0)