From 041de0e30c4077a000333dc5d0872aaa66a627c4 Mon Sep 17 00:00:00 2001 From: Tobias Schmidt Date: Thu, 21 Jan 2016 16:20:32 -0500 Subject: [PATCH] Fix go format style in filesystem collector --- collector/filesystem_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collector/filesystem_linux.go b/collector/filesystem_linux.go index 7fafcfb2..02f2c4a1 100644 --- a/collector/filesystem_linux.go +++ b/collector/filesystem_linux.go @@ -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 }