Skip to content

Commit

Permalink
Fixing for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
CerealBoy committed Dec 1, 2024
1 parent f1c0915 commit fdefcd8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/info/disk_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ import (
// Disk is a structure to capture some space utilisation details about a
// specific disk.
type Disk struct {
Available int64 `json:"available"`
Free int64 `json:"free"`
Available uint64 `json:"available"`
Free uint64 `json:"free"`
Path string `json:"path"`
Size int64 `json:"size"`
Used int64 `json:"used"`
Size uint64 `json:"size"`
Used uint64 `json:"used"`
}

// DiskDetails will accept a string that represents a path in the local
Expand Down

0 comments on commit fdefcd8

Please sign in to comment.