diff options
Diffstat (limited to 'cmd/podman/create_cli.go')
-rw-r--r-- | cmd/podman/create_cli.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/create_cli.go b/cmd/podman/create_cli.go index 11a5d3533..8ae4b6c64 100644 --- a/cmd/podman/create_cli.go +++ b/cmd/podman/create_cli.go @@ -8,6 +8,7 @@ import ( "github.com/docker/docker/pkg/sysinfo" "github.com/pkg/errors" + cc "github.com/projectatomic/libpod/pkg/spec" "github.com/sirupsen/logrus" ) @@ -141,7 +142,7 @@ func validateVolumeOpts(option string) error { return nil } -func verifyContainerResources(config *createConfig, update bool) ([]string, error) { +func verifyContainerResources(config *cc.CreateConfig, update bool) ([]string, error) { warnings := []string{} sysInfo := sysinfo.New(true) |