Skip to content

Commit

Permalink
Fixing compile bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendan Fosberry committed May 29, 2015
1 parent e899d8a commit 302cd99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/realtime-advanced/stats.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func statsWorker() {
c := time.Tick(1 * time.Second)
var lastMallocs uint64 = 0
var lastFrees uint64 = 0
for range c {
for _ = range c {
var stats runtime.MemStats
runtime.ReadMemStats(&stats)

Expand Down

0 comments on commit 302cd99

Please sign in to comment.