Fix go format style in filesystem collector

This commit is contained in:
Tobias Schmidt 2016-01-21 16:20:32 -05:00
parent d1f0f2247d
commit 041de0e30c
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ func (c *filesystemCollector) GetStats() (stats []filesystemStats, err error) {
}
var ro float64
if buf.Flags & ST_RDONLY != 0 {
if buf.Flags&ST_RDONLY != 0 {
ro = 1
}