소스 검색

Windows: NewDriver() re-baseline parms

Signed-off-by: John Howard <jhoward@microsoft.com>
John Howard 10 년 전
부모
커밋
50b4079b5f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      daemon/execdriver/execdrivers/execdrivers_windows.go

+ 1 - 1
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)