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

Support 32-bit linux, this field is int32 on 32-bit systems
pull/80/head
shirou 10 years ago
commit a369a8857c

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

Loading…
Cancel
Save