diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-02-19 17:53:49 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-02-22 14:49:36 +0000 |
commit | 7c51fa05a298ae69acb0fa8481e6fa76fceb75f4 (patch) | |
tree | fa56b726401af64a11cfc7808e593d5a433f969f /libpod | |
parent | 0838c2b984bb0188809eb1cbeba2facb69362eb0 (diff) | |
download | podman-7c51fa05a298ae69acb0fa8481e6fa76fceb75f4.tar.gz podman-7c51fa05a298ae69acb0fa8481e6fa76fceb75f4.tar.bz2 podman-7c51fa05a298ae69acb0fa8481e6fa76fceb75f4.zip |
Fix gofmt
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #361
Approved by: rhatdan
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/pod.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/pod.go b/libpod/pod.go index 1e224b251..b97ef0d1a 100644 --- a/libpod/pod.go +++ b/libpod/pod.go @@ -111,7 +111,7 @@ func (p *Pod) Start() error { // TODO remove this when we patch conmon to support restarting containers if ctr.state.State == ContainerStateStopped { - continue; + continue } if err := ctr.runtime.ociRuntime.startContainer(ctr); err != nil { |