浏览代码

Windows: Fix volume_windows compile

Signed-off-by: John Howard <jhoward@microsoft.com>
John Howard 10 年之前
父节点
当前提交
1dc0499b64
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      daemon/volumes_windows.go

+ 2 - 2
daemon/volumes_windows.go

@@ -6,9 +6,9 @@ import "github.com/docker/docker/daemon/execdriver"
 
 // Not supported on Windows
 func copyOwnership(source, destination string) error {
-	return nil, nil
+	return nil
 }
 
 func (container *Container) setupMounts() ([]execdriver.Mount, error) {
-	return nil
+	return nil, nil
 }