Merge pull request #10565 from jfrazelle/fix-range

Fix compilation on Go 1.3.3
This commit is contained in:
Alexander Morozov 2015-02-04 14:07:05 -08:00
commit 7cc9858223
1 changed files with 1 additions and 1 deletions

View File

@ -2728,7 +2728,7 @@ func (cli *DockerCli) CmdStats(args ...string) error {
if len(errs) > 0 {
return fmt.Errorf("%s", strings.Join(errs, ", "))
}
for range time.Tick(500 * time.Millisecond) {
for _ = range time.Tick(500 * time.Millisecond) {
printHeader()
toRemove := []int{}
for i, s := range cStats {