1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-05-01 13:48:52 +08:00

Merge pull request #79 from influxdb/disk-linux-32bit

Support 32-bit linux, this field is int32 on 32-bit systems
This commit is contained in:
shirou 2015-09-18 08:05:45 +09:00
commit a369a8857c

View File

@ -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 ""