Browse Source

Windows: Fix volume_windows compile

Signed-off-by: John Howard <jhoward@microsoft.com>
John Howard 10 years ago
parent
commit
1dc0499b64
1 changed files with 2 additions and 2 deletions
  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
 // Not supported on Windows
 func copyOwnership(source, destination string) error {
 func copyOwnership(source, destination string) error {
-	return nil, nil
+	return nil
 }
 }
 
 
 func (container *Container) setupMounts() ([]execdriver.Mount, error) {
 func (container *Container) setupMounts() ([]execdriver.Mount, error) {
-	return nil
+	return nil, nil
 }
 }