mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #10565 from jfrazelle/fix-range
Fix compilation on Go 1.3.3
This commit is contained in:
commit
7cc9858223
1 changed files with 1 additions and 1 deletions
|
@ -2728,7 +2728,7 @@ func (cli *DockerCli) CmdStats(args ...string) error {
|
||||||
if len(errs) > 0 {
|
if len(errs) > 0 {
|
||||||
return fmt.Errorf("%s", strings.Join(errs, ", "))
|
return fmt.Errorf("%s", strings.Join(errs, ", "))
|
||||||
}
|
}
|
||||||
for range time.Tick(500 * time.Millisecond) {
|
for _ = range time.Tick(500 * time.Millisecond) {
|
||||||
printHeader()
|
printHeader()
|
||||||
toRemove := []int{}
|
toRemove := []int{}
|
||||||
for i, s := range cStats {
|
for i, s := range cStats {
|
||||||
|
|
Loading…
Reference in a new issue