diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-01-18 11:49:14 -0500 |
---|---|---|
committer | Matthew Heon <matthew.heon@gmail.com> | 2018-01-18 11:49:14 -0500 |
commit | 49378c055ad677505a358b4e0572ec235dbde6e4 (patch) | |
tree | 568759fb6b83f9cfa9d2c2b1c6c75883be751454 /libpod/container_internal.go | |
parent | 4f2bf5ba1c27d686c0405e008a07d642d5a1e510 (diff) | |
download | podman-49378c055ad677505a358b4e0572ec235dbde6e4.tar.gz podman-49378c055ad677505a358b4e0572ec235dbde6e4.tar.bz2 podman-49378c055ad677505a358b4e0572ec235dbde6e4.zip |
Rename containerRuntimeInfo to containerState for clarity
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Diffstat (limited to 'libpod/container_internal.go')
-rw-r--r-- | libpod/container_internal.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container_internal.go b/libpod/container_internal.go index 73f9c6961..5f43d03a7 100644 --- a/libpod/container_internal.go +++ b/libpod/container_internal.go @@ -141,7 +141,7 @@ func newContainer(rspec *spec.Spec, lockDir string) (*Container, error) { ctr := new(Container) ctr.config = new(ContainerConfig) - ctr.state = new(containerRuntimeInfo) + ctr.state = new(containerState) ctr.config.ID = stringid.GenerateNonCryptoID() ctr.config.Name = namesgenerator.GetRandomName(0) |