From 3f06da7b5f2c8c36086920d6d73aa6557087c956 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Tue, 12 Jun 2018 14:02:36 +0300 Subject: metrics: fix gofmt linter warnings --- metrics/metrics.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'metrics') diff --git a/metrics/metrics.go b/metrics/metrics.go index 11203ccdc..2356f2b14 100644 --- a/metrics/metrics.go +++ b/metrics/metrics.go @@ -68,8 +68,8 @@ func CollectProcessMetrics(refresh time.Duration) { } // Iterate loading the different stats and updating the meters for i := 1; ; i++ { - location1 := i%2 - location2 := (i-1)%2 + location1 := i % 2 + location2 := (i - 1) % 2 runtime.ReadMemStats(memstats[location1]) memAllocs.Mark(int64(memstats[location1].Mallocs - memstats[location2].Mallocs)) -- cgit v1.2.3