Skip to content

Commit

Permalink
Fix clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Dec 27, 2024
1 parent d463e4f commit 7f31783
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/windows/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1020,5 +1020,5 @@ pub(crate) fn update_disk_usage(p: &mut ProcessInner) {

#[inline(always)]
const fn filetime_to_u64(ft: FILETIME) -> u64 {
(ft.dwHighDateTime as u64) << 32 | (ft.dwLowDateTime as u64)
((ft.dwHighDateTime as u64) << 32) | (ft.dwLowDateTime as u64)
}

0 comments on commit 7f31783

Please sign in to comment.