We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7108c6e commit 4ef5f24Copy full SHA for 4ef5f24
cli/clistat/disk_windows.go
@@ -29,7 +29,7 @@ func (s *Statter) Disk(path string) (*Result, error) {
29
30
var r Result
31
r.Total = ptr.To(float64(totalBytes) / 1024 / 1024 / 1024)
32
- r.Used = ptr.To(float64(totalBytes-freeBytes) / 1024 / 1024 / 1024)
+ r.Used = float64(totalBytes-freeBytes) / 1024 / 1024 / 1024
33
r.Unit = "GB"
34
return &r, nil
35
}
0 commit comments