Skip to content

Commit

Permalink
into for type conversiong
Browse files Browse the repository at this point in the history
Signed-off-by: karan <[email protected]>
  • Loading branch information
KMJ-007 committed Dec 19, 2024
1 parent 6ccf4b3 commit ac410bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ impl Stats {
#[cfg(target_os = "macos")]
{
(
u64::from(statvfs.blocks()),
u64::from(statvfs.blocks_available()),
u64::from(statvfs.blocks_free()),
statvfs.blocks().into(),
statvfs.blocks_available().into(),
statvfs.blocks_free().into(),
statvfs.files().into(),
statvfs.files_available().into(),
)
Expand Down

0 comments on commit ac410bd

Please sign in to comment.