From e0c05fcb5b92dee3ab130e41c574b31625514dfe Mon Sep 17 00:00:00 2001 From: Didier Spezia Date: Sun, 23 Aug 2015 12:41:07 +0000 Subject: [PATCH] cmd/pprof/internal: map/slice literals janitoring Simplify slice/map literal expression. Caught with gofmt -d -s, fixed with gofmt -w -s Change-Id: I19723900d0649019bf79b9330d68525a68ed69c4 Reviewed-on: https://go-review.googlesource.com/13835 Reviewed-by: Russ Cox --- src/cmd/pprof/internal/profile/legacy_profile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/pprof/internal/profile/legacy_profile.go b/src/cmd/pprof/internal/profile/legacy_profile.go index e4c92cdd19..c7c047a64b 100644 --- a/src/cmd/pprof/internal/profile/legacy_profile.go +++ b/src/cmd/pprof/internal/profile/legacy_profile.go @@ -589,7 +589,7 @@ func parseHeap(b []byte) (p *Profile, err error) { p.Sample = append(p.Sample, &Sample{ Value: value, Location: sloc, - NumLabel: map[string][]int64{"bytes": []int64{blocksize}}, + NumLabel: map[string][]int64{"bytes": {blocksize}}, }) } -- 2.50.0