From 16b10bb55d5c226476b949ee290b3407794b47e2 Mon Sep 17 00:00:00 2001 From: Kunal Kushwaha Date: Mon, 26 Jun 2017 11:46:32 +0900 Subject: [PATCH] Runtime name printed correctly. Runtime is not printed while container listing due to typo introduced in #935. This fixes the Typo. Signed-off-by: Kunal Kushwaha --- cmd/ctr/list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/ctr/list.go b/cmd/ctr/list.go index 34c138f29..845b7ea7c 100644 --- a/cmd/ctr/list.go +++ b/cmd/ctr/list.go @@ -167,7 +167,7 @@ func containerListFn(context *cli.Context) error { if _, err := fmt.Fprintf(cl, "%s\t%s\t%s\t%d\n", c.ID(), imageName, - proto.Runtime, + proto.Runtime.Name, proto.Size(), ); err != nil { return err