Windows: Fix volume_windows compile

Signed-off-by: John Howard <jhoward@microsoft.com>
Upstream-commit: 1dc0499b64179e18b902e34d5c97ff72327d9d59
Component: engine
This commit is contained in:
John Howard
2015-05-26 09:43:21 -07:00
parent 86ef32192a
commit aff149351d
+2 -2
View File
@@ -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
}