mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix compilation on Go 1.3.3
Docker-DCO-1.1-Signed-off-by: Jessie Frazelle <jess@docker.com> (github: jfrazelle)
This commit is contained in:
parent
5a5726c5e4
commit
4855612aae
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