Skip to content

Commit

Permalink
make introspection.RootDiskType int64 rather than int (#1634)
Browse files Browse the repository at this point in the history
Fixes tests (and functionality I suspect!) on 32-bit systems.
  • Loading branch information
mwhudson committed Jul 6, 2020
1 parent 2921f45 commit fd95bfa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ type RootDiskType struct {
ByPath string `json:"by_path"`
Rotational bool `json:"rotational"`
Serial string `json:"serial"`
Size int `json:"size"`
Size int64 `json:"size"`
Vendor string `json:"vendor"`
Wwn string `json:"wwn"`
WwnVendorExtension string `json:"wwn_vendor_extension"`
Expand Down

0 comments on commit fd95bfa

Please sign in to comment.