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 3eb4b94 commit 04a9c3a
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 @@ -1008,5 +1008,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 04a9c3a

Please sign in to comment.