Fix lint issues on filesystem BSD implementation

This commit is contained in:
Tobias Schmidt 2017-03-22 21:47:36 -03:00
parent 6580c95305
commit 7b93b52010

View File

@ -34,7 +34,7 @@ import "C"
const ( const (
defIgnoredMountPoints = "^/(dev)($|/)" defIgnoredMountPoints = "^/(dev)($|/)"
defIgnoredFSTypes = "^devfs$" defIgnoredFSTypes = "^devfs$"
MNT_RDONLY = 0x1 readOnly = 0x1 // MNT_RDONLY
) )
// Expose filesystem fullness. // Expose filesystem fullness.
@ -62,7 +62,7 @@ func (c *filesystemCollector) GetStats() (stats []filesystemStats, err error) {
} }
var ro float64 var ro float64
if (mnt[i].f_flags & MNT_RDONLY) != 0 { if (mnt[i].f_flags & readOnly) != 0 {
ro = 1 ro = 1
} }