Skip to content

Commit

Permalink
Fix: minor
Browse files Browse the repository at this point in the history
  • Loading branch information
ssleert committed Feb 25, 2023
1 parent 85d3937 commit adc16bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/data/depent.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func getDiskSize(ch chan float64, errch chan error) {
errch <- err
ch <- 0
}
result := float64(int(stat.Bsize)*int(stat.Blocks)) / (GB * MB)
result := float64(uint64(stat.Bsize)*uint64(stat.Blocks)) / (GB * MB)

errch <- nil
ch <- result
Expand Down
2 changes: 1 addition & 1 deletion internal/self/commit.dat
Original file line number Diff line number Diff line change
@@ -1 +1 @@
83d4a86
85d3937

0 comments on commit adc16bc

Please sign in to comment.