Update gopsutil dependency to enable 32-bit builds
This commit is contained in:
2
Godeps/_workspace/src/github.com/shirou/gopsutil/disk/disk_linux.go
generated
vendored
2
Godeps/_workspace/src/github.com/shirou/gopsutil/disk/disk_linux.go
generated
vendored
@@ -318,7 +318,7 @@ func GetDiskSerialNumber(name string) string {
|
||||
}
|
||||
|
||||
func getFsType(stat syscall.Statfs_t) string {
|
||||
t := stat.Type
|
||||
t := int64(stat.Type)
|
||||
ret, ok := fsTypeMap[t]
|
||||
if !ok {
|
||||
return ""
|
||||
|
||||
Reference in New Issue
Block a user