print a newline when done

pull/939/merge
John Shahid 2014-09-19 13:51:53 -04:00
parent 4e78bce7ac
commit 20deef8b37
1 changed files with 2 additions and 1 deletions

View File

@ -210,11 +210,12 @@ func benchmarkWrites(db storage.Engine, c *Config, points int) int {
if err := db.BatchPut(w); err != nil {
panic(err)
}
fmt.Print('.')
fmt.Print(".")
}
}(i)
}
wg.Wait()
fmt.Printf("\n")
return count
}