From 1dc0499b64179e18b902e34d5c97ff72327d9d59 Mon Sep 17 00:00:00 2001 From: John Howard Date: Tue, 26 May 2015 09:43:21 -0700 Subject: [PATCH] Windows: Fix volume_windows compile Signed-off-by: John Howard --- daemon/volumes_windows.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon/volumes_windows.go b/daemon/volumes_windows.go index 762f404883..c37ca220d7 100644 --- a/daemon/volumes_windows.go +++ b/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 }