Fixing compile bug

This commit is contained in:
Brendan Fosberry 2015-05-29 12:12:54 -05:00
parent e899d8a99e
commit 302cd99322
1 changed files with 1 additions and 1 deletions

View File

@ -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)