Windows: Enable clippy deny warnings (#9920)

~Waiting #9918~

Release Notes:

- N/A
This commit is contained in:
白山風露 2024-03-29 00:55:35 +09:00 committed by GitHub
parent 659ea7054a
commit 94c51c6ac9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 26 additions and 35 deletions

View file

@ -60,7 +60,7 @@ impl ProcessIdGetter {
}
return Some(Pid::from_u32(self.fallback_pid));
}
Some(Pid::from_u32(pid as u32))
Some(Pid::from_u32(pid))
}
}