소스 검색

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
 }