Commit e0c05fcb authored by Didier Spezia's avatar Didier Spezia Committed by Russ Cox

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/13835Reviewed-by: default avatarRuss Cox <rsc@golang.org>
parent a456e356
...@@ -589,7 +589,7 @@ func parseHeap(b []byte) (p *Profile, err error) { ...@@ -589,7 +589,7 @@ func parseHeap(b []byte) (p *Profile, err error) {
p.Sample = append(p.Sample, &Sample{ p.Sample = append(p.Sample, &Sample{
Value: value, Value: value,
Location: sloc, Location: sloc,
NumLabel: map[string][]int64{"bytes": []int64{blocksize}}, NumLabel: map[string][]int64{"bytes": {blocksize}},
}) })
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment