From 4855612aaecf7719edc36693d402279c743be7fc Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Wed, 4 Feb 2015 13:35:20 -0800 Subject: [PATCH] Fix compilation on Go 1.3.3 Docker-DCO-1.1-Signed-off-by: Jessie Frazelle (github: jfrazelle) --- api/client/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/client/commands.go b/api/client/commands.go index 857ef6d813..daa13743eb 100644 --- a/api/client/commands.go +++ b/api/client/commands.go @@ -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 {