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