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
1 changed files with 1 additions and 1 deletions

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