From 50b4079b5fdb9d966f49946c8db36c81648c1dee Mon Sep 17 00:00:00 2001 From: John Howard Date: Sat, 16 May 2015 11:38:19 -0700 Subject: [PATCH] Windows: NewDriver() re-baseline parms Signed-off-by: John Howard --- daemon/execdriver/execdrivers/execdrivers_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/execdriver/execdrivers/execdrivers_windows.go b/daemon/execdriver/execdrivers/execdrivers_windows.go index 563961fce4..aca21ead46 100644 --- a/daemon/execdriver/execdrivers/execdrivers_windows.go +++ b/daemon/execdriver/execdrivers/execdrivers_windows.go @@ -10,7 +10,7 @@ import ( "github.com/docker/docker/pkg/sysinfo" ) -func NewDriver(name, root, libPath, initPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) { +func NewDriver(name string, options []string, root, libPath, initPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) { switch name { case "windows": return windows.NewDriver(root, initPath)