From 77f255a544f1a74f91c8c9699a5444b12010bec9 Mon Sep 17 00:00:00 2001 From: Michael Crosby Date: Sat, 31 Jan 2015 14:05:53 -0800 Subject: [PATCH] Add missing initializers Signed-off-by: Michael Crosby --- nsinit/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nsinit/init.go b/nsinit/init.go index bf59345a..21128302 100644 --- a/nsinit/init.go +++ b/nsinit/init.go @@ -14,7 +14,7 @@ var ( Usage: "runs the init process inside the namespace", Action: initAction, Flags: []cli.Flag{ - cli.IntFlag{"fd", 0, "internal pipe fd"}, + cli.IntFlag{Name: "fd", Value: 0, Usage: "internal pipe fd"}, }, } )