aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-06-12 19:04:59 +0800
committerGitHub <noreply@github.com>2018-06-12 19:04:59 +0800
commit9608ccf106584c73e91258518eb9d09ad39cc8ae (patch)
treedde963d1326535312515ba8d41de1c910bec86bc
parent546d42179e7c121b4c3aeeec5ab71a3c112e7a64 (diff)
parent3f06da7b5f2c8c36086920d6d73aa6557087c956 (diff)
downloadgo-tangerine-9608ccf106584c73e91258518eb9d09ad39cc8ae.tar
go-tangerine-9608ccf106584c73e91258518eb9d09ad39cc8ae.tar.gz
go-tangerine-9608ccf106584c73e91258518eb9d09ad39cc8ae.tar.bz2
go-tangerine-9608ccf106584c73e91258518eb9d09ad39cc8ae.tar.lz
go-tangerine-9608ccf106584c73e91258518eb9d09ad39cc8ae.tar.xz
go-tangerine-9608ccf106584c73e91258518eb9d09ad39cc8ae.tar.zst
go-tangerine-9608ccf106584c73e91258518eb9d09ad39cc8ae.zip
Merge pull request #16959 from karalabe/fix-linters
metrics: fix gofmt linter warnings
-rw-r--r--metrics/metrics.go4
1 files changed, 2 insertions, 2 deletions
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))