summaryrefslogtreecommitdiff
path: root/layer/layer_store_windows.go
diff options
context:
space:
mode:
authorJohn Howard <jhoward@microsoft.com>2017-04-25 16:45:42 -0700
committerJohn Howard <jhoward@microsoft.com>2017-06-20 09:21:37 -0700
commit42c5c1a9ec14f00d5a5367131493cbd6de7d72b0 (patch)
tree2c20441d66f2ca4acb1e459eb6a8a9f0d48bfaf8 /layer/layer_store_windows.go
parentfc21bf280bac39377d3a236efa87f5c8cbadfb9f (diff)
downloaddocker-42c5c1a9ec14f00d5a5367131493cbd6de7d72b0.tar.gz
LCOW: Pass platform through into layer store
Signed-off-by: John Howard <jhoward@microsoft.com>
Diffstat (limited to 'layer/layer_store_windows.go')
-rw-r--r--layer/layer_store_windows.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/layer/layer_store_windows.go b/layer/layer_store_windows.go
index 1276a912cc..ccbf6dd52a 100644
--- a/layer/layer_store_windows.go
+++ b/layer/layer_store_windows.go
@@ -6,6 +6,6 @@ import (
"github.com/docker/distribution"
)
-func (ls *layerStore) RegisterWithDescriptor(ts io.Reader, parent ChainID, descriptor distribution.Descriptor) (Layer, error) {
- return ls.registerWithDescriptor(ts, parent, descriptor)
+func (ls *layerStore) RegisterWithDescriptor(ts io.Reader, parent ChainID, platform Platform, descriptor distribution.Descriptor) (Layer, error) {
+ return ls.registerWithDescriptor(ts, parent, platform, descriptor)
}