From 897cc573f051f1d88be0fde05946e66d0c86c43e Mon Sep 17 00:00:00 2001 From: "Guillaume J. Charmes" Date: Thu, 2 May 2013 09:23:29 -0700 Subject: [PATCH] Fix the graph.Create prototype --- container.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container.go b/container.go index 98e62c8849..dc57a31135 100644 --- a/container.go +++ b/container.go @@ -408,7 +408,7 @@ func (container *Container) Start() error { // Create the requested volumes volumes for volPath := range container.Config.Volumes { - if c, err := container.runtime.volumes.Create(nil, container, "", ""); err != nil { + if c, err := container.runtime.volumes.Create(nil, container, "", "", nil); err != nil { return err } else { if err := os.MkdirAll(path.Join(container.RootfsPath(), volPath), 0755); err != nil {