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/sql_state_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/sql_state_internal.go')
-rw-r--r-- | libpod/sql_state_internal.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/sql_state_internal.go b/libpod/sql_state_internal.go index 1dbc466e4..24d5d8bd4 100644 --- a/libpod/sql_state_internal.go +++ b/libpod/sql_state_internal.go @@ -467,7 +467,7 @@ func (s *SQLState) ctrFromScannable(row scannable) (*Container, error) { ctr := new(Container) ctr.config = new(ContainerConfig) - ctr.state = new(containerRuntimeInfo) + ctr.state = new(containerState) ctr.config.ID = id ctr.config.Name = name |